├── libs ├── glog │ ├── NEWS │ └── README ├── ceres │ ├── patches │ │ └── series │ ├── README │ └── mkfiles.sh ├── Eigen3 │ └── Eigen │ │ ├── src │ │ ├── SparseCore │ │ │ └── SparseAssign.h │ │ └── Core │ │ │ └── util │ │ │ └── NonMPL2.h │ │ ├── Eigen │ │ └── Dense ├── gflags │ └── AUTHORS.txt ├── hoedown │ ├── test │ │ ├── Tests │ │ │ ├── Underline.text │ │ │ ├── Underline.html │ │ │ ├── Formatting in Table of Contents.text │ │ │ └── Images.text │ │ └── MarkdownTest_1.0.3 │ │ │ └── Tests │ │ │ ├── Nested blockquotes.text │ │ │ ├── Tidyness.text │ │ │ ├── Literal quotes in titles.text │ │ │ ├── Strong and em together.text │ │ │ ├── Nested blockquotes.html │ │ │ ├── Tidyness.html │ │ │ ├── Literal quotes in titles.html │ │ │ ├── Code Spans.text │ │ │ ├── Blockquotes with code blocks.text │ │ │ ├── Inline HTML (Advanced).text │ │ │ ├── Inline HTML comments.text │ │ │ ├── Code Spans.html │ │ │ ├── Inline HTML (Advanced).html │ │ │ └── Strong and em together.html │ ├── README.Natron │ ├── src │ │ └── version.c │ └── html_block_names.gperf ├── libmv │ ├── third_party │ │ ├── CMakeLists.txt │ │ ├── SConscript │ │ └── msinttypes │ │ │ └── README.libmv │ └── mkfiles.sh ├── qhttpserver │ ├── qhttpserver.pro │ └── README.Natron ├── yaml-cpp │ └── src │ │ └── null.cpp └── openMVG │ └── openMVG │ ├── stl │ └── CMakeLists.txt │ ├── sfm │ └── pipelines │ │ ├── CMakeLists.txt │ │ ├── global │ │ └── CMakeLists.txt │ │ └── sequential │ │ └── CMakeLists.txt │ ├── tracks │ └── CMakeLists.txt │ ├── image │ └── image_test │ │ ├── lena.png │ │ ├── two_pixels.pgm │ │ ├── two_pixels.ppm │ │ ├── two_pixels_color.jpg │ │ ├── two_pixels_color.png │ │ ├── two_pixels_gray.pgm │ │ ├── two_pixels_monochrome.jpg │ │ └── two_pixels_monochrome.png │ ├── multiview │ └── rotation_averaging_test.cpp │ ├── graph │ └── CMakeLists.txt │ ├── exif │ ├── CMakeLists.txt │ └── sensor_width_database │ │ └── CMakeLists.txt │ ├── color_harmonization │ └── CMakeLists.txt │ └── cameras │ └── CMakeLists.txt ├── tools ├── dummy.ntp ├── MacPorts │ ├── aqua │ │ └── qt4-mac │ │ │ └── files │ │ │ ├── cpath │ │ │ ├── cpath_test.h │ │ │ └── cpath_test.c │ │ │ ├── library_path │ │ │ ├── library_path_lib.c │ │ │ ├── library_path_lib.h │ │ │ └── library_path_test.c │ │ │ └── c++11.prf │ ├── devel │ │ └── cppunit │ │ │ └── README.txt │ ├── clean.sh │ ├── multimedia │ │ └── bino │ │ │ └── files │ │ │ └── Bino.icns │ ├── findnonstatic.sh │ ├── lang │ │ ├── gcc6 │ │ │ └── files │ │ │ │ └── mp-gcc6 │ │ ├── gcc7 │ │ │ └── files │ │ │ │ └── mp-gcc7 │ │ ├── gcc5 │ │ │ └── files │ │ │ │ └── mp-gcc5 │ │ ├── gcc48 │ │ │ └── files │ │ │ │ └── mp-gcc48 │ │ └── gcc49 │ │ │ └── files │ │ │ └── mp-gcc49 │ └── tuttleofx-portfiles.sh ├── license │ ├── natron-cla-entity.odt │ ├── natron-cla-individual.odt │ └── ha-cla-README.txt ├── utils │ └── generateGLIncludes.pro └── normalize │ └── normalize.pro ├── Engine ├── RotoPaintPlanarTrackerImpl.cpp └── NatronEngine │ ├── exprutils_wrapper.h │ ├── imagelayer_wrapper.h │ ├── strokepoint_wrapper.h │ ├── colortuple_wrapper.h │ ├── int2dtuple_wrapper.h │ ├── int3dtuple_wrapper.h │ ├── appsettings_wrapper.h │ ├── double2dtuple_wrapper.h │ ├── double3dtuple_wrapper.h │ ├── natron_namespace_wrapper.h │ └── pyoverlayparamdesc_wrapper.h ├── Gui ├── Resources │ ├── Images │ │ ├── mix.png │ │ ├── addKF.png │ │ ├── back1.png │ │ ├── bezier.png │ │ ├── bounce.png │ │ ├── close.png │ │ ├── cursor.png │ │ ├── curve.png │ │ ├── expoON.png │ │ ├── help.png │ │ ├── layer.png │ │ ├── layout.png │ │ ├── locked.png │ │ ├── nextKF.png │ │ ├── play.png │ │ ├── prevKF.png │ │ ├── redo.png │ │ ├── rewind.png │ │ ├── soloOn.png │ │ ├── source.png │ │ ├── undo.png │ │ ├── addTrack.png │ │ ├── bezier32.png │ │ ├── checkbox.png │ │ ├── closeTab.png │ │ ├── combobox.png │ │ ├── dot_icon.png │ │ ├── ellipse.png │ │ ├── expoOFF.png │ │ ├── forward1.png │ │ ├── gammaOFF.png │ │ ├── gammaON.png │ │ ├── inverted.png │ │ ├── lifetime.png │ │ ├── loopmode.png │ │ ├── maskOff.png │ │ ├── maximize.png │ │ ├── merge_in.png │ │ ├── minimize.png │ │ ├── nextIncr.png │ │ ├── playOnce.png │ │ ├── refresh.png │ │ ├── removeKF.png │ │ ├── settings.png │ │ ├── soloOff.png │ │ ├── turbo_on.png │ │ ├── unlocked.png │ │ ├── visible.png │ │ ├── zebra_on.png │ │ ├── DS_CE_Icon.png │ │ ├── addPoints.png │ │ ├── addUserKey.png │ │ ├── clearOutput.png │ │ ├── closePanel.png │ │ ├── colorwheel.png │ │ ├── cuspPoints.png │ │ ├── enter_group.png │ │ ├── execScript.png │ │ ├── firstFrame.png │ │ ├── fullFrameOn.png │ │ ├── group_icon.png │ │ ├── input_icon.png │ │ ├── lastFrame.png │ │ ├── linkCursor.png │ │ ├── loadScript.png │ │ ├── merge_color.png │ │ ├── merge_copy.png │ │ ├── merge_from.png │ │ ├── merge_hue.png │ │ ├── merge_hypot.png │ │ ├── merge_mask.png │ │ ├── merge_matte.png │ │ ├── merge_max.png │ │ ├── merge_min.png │ │ ├── merge_minus.png │ │ ├── merge_out.png │ │ ├── merge_over.png │ │ ├── merge_plus.png │ │ ├── merge_under.png │ │ ├── merge_xor.png │ │ ├── motionTypeT.png │ │ ├── natronIcon.icns │ │ ├── natronIcon.pdf │ │ ├── nextScript.png │ │ ├── nextUserKey.png │ │ ├── oneViewNode.png │ │ ├── open-file.png │ │ ├── openeffects.png │ │ ├── output_icon.png │ │ ├── patternSize.png │ │ ├── prevUserKey.png │ │ ├── readImage.png │ │ ├── rectangle.png │ │ ├── renderScale.png │ │ ├── roto_merge.png │ │ ├── saveScript.png │ │ ├── searchSize.png │ │ ├── stopEnabled.png │ │ ├── timeOffset.png │ │ ├── timelineIn.png │ │ ├── timelineOut.png │ │ ├── trackNext.png │ │ ├── trackPrev.png │ │ ├── trackRange.png │ │ ├── turbo_off.png │ │ ├── uninverted.png │ │ ├── unvisible.png │ │ ├── viewer_icon.png │ │ ├── writeImage.png │ │ ├── zebra_off.png │ │ ├── AutoContrast.png │ │ ├── CornerPinIcon.png │ │ ├── DopeSheetIcon.png │ │ ├── NodeGraphIcon.png │ │ ├── backdrop_icon.png │ │ ├── bold_checked.png │ │ ├── centerOnTrack.png │ │ ├── centerViewer.png │ │ ├── color_picker.png │ │ ├── fullFrameOff.png │ │ ├── interp_break.png │ │ ├── interp_curve.png │ │ ├── interp_linear.png │ │ ├── joinViewsNode.png │ │ ├── layout_anchor.png │ │ ├── merge_average.png │ │ ├── merge_divide.png │ │ ├── merge_overlay.png │ │ ├── merge_screen.png │ │ ├── merge_stencil.png │ │ ├── motionTypeRT.png │ │ ├── motionTypeRTS.png │ │ ├── motionTypeTS.png │ │ ├── pauseDisabled.png │ │ ├── pauseEnabled.png │ │ ├── play_enabled.png │ │ ├── previousIncr.png │ │ ├── refreshActive.png │ │ ├── removeFeather.png │ │ ├── removePoints.png │ │ ├── removeUserKey.png │ │ ├── rotoNodeIcon.png │ │ ├── selectCurves.png │ │ ├── selectFeather.png │ │ ├── selectPoints.png │ │ ├── smoothPoints.png │ │ ├── splashscreen.jpg │ │ ├── stopDisabled.png │ │ ├── stopTracking.png │ │ ├── treeview_end.png │ │ ├── treeview_more.png │ │ ├── AutoContrastON.png │ │ ├── CurveEditorIcon.png │ │ ├── PropertiesIcon.png │ │ ├── ScriptEditorIcon.png │ │ ├── ViewerPanelIcon.png │ │ ├── bold_unchecked.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_hovered.png │ │ ├── checkerboard_off.png │ │ ├── checkerboard_on.png │ │ ├── clearAnimation.png │ │ ├── clearAnimationBw.png │ │ ├── clearAnimationFw.png │ │ ├── closeTab_hovered.png │ │ ├── diskcache_icon.png │ │ ├── featherDisabled.png │ │ ├── featherEnabled.png │ │ ├── groupbox_folded.png │ │ ├── hideTrackError.png │ │ ├── hide_unmodified.png │ │ ├── interp_constant.png │ │ ├── interp_curve_c.png │ │ ├── interp_curve_h.png │ │ ├── interp_curve_r.png │ │ ├── interp_curve_z.png │ │ ├── italic_checked.png │ │ ├── italic_unchecked.png │ │ ├── linkMultCursor.png │ │ ├── merge_color_burn.png │ │ ├── merge_difference.png │ │ ├── merge_exclusion.png │ │ ├── merge_geometric.png │ │ ├── merge_hardlight.png │ │ ├── merge_luminosity.png │ │ ├── merge_multiply.png │ │ ├── merge_pinlight.png │ │ ├── merge_saturation.png │ │ ├── merge_softlight.png │ │ ├── motionTypeAffine.png │ │ ├── openCloseCurve.png │ │ ├── precompNodeIcon.png │ │ ├── pressed_combobox.png │ │ ├── previousScript.png │ │ ├── redo_grayscale.png │ │ ├── removeUserKeys.png │ │ ├── resetTrackOffset.png │ │ ├── rewind_enabled.png │ │ ├── rotoToolPencil.png │ │ ├── rotopaint_blur.png │ │ ├── rotopaint_burn.png │ │ ├── rotopaint_clone.png │ │ ├── rotopaint_dodge.png │ │ ├── rotopaint_eraser.png │ │ ├── rotopaint_reveal.png │ │ ├── rotopaint_smear.png │ │ ├── rotopaint_solid.png │ │ ├── showTrackError.png │ │ ├── splitVertically.png │ │ ├── trackBackwardOff.png │ │ ├── trackBackwardOn.png │ │ ├── trackForwardOff.png │ │ ├── trackForwardOn.png │ │ ├── trackerNodeIcon.png │ │ ├── treeview_vline.png │ │ ├── undo_grayscale.png │ │ ├── ProgressPanelIcon.png │ │ ├── autoKeyingDisabled.png │ │ ├── autoKeyingEnabled.png │ │ ├── colorwheel_overlay.png │ │ ├── createKeyOnMoveOff.png │ │ ├── createKeyOnMoveOn.png │ │ ├── featherLinkEnabled.png │ │ ├── groupbox_unfolded.png │ │ ├── keyframe_node_root.png │ │ ├── loadAndExecScript.png │ │ ├── merge_color_dodge.png │ │ ├── merge_grain_merge.png │ │ ├── rippleEditDisabled.png │ │ ├── rippleEditEnabled.png │ │ ├── rotopaint_sharpen.png │ │ ├── scrollbarButton_up.png │ │ ├── splitHorizontally.png │ │ ├── trackAllKeyframes.png │ │ ├── unhide_unmodified.png │ │ ├── viewer_roiDisabled.png │ │ ├── viewer_roiEnabled.png │ │ ├── cliptoprojectDisabled.png │ │ ├── cliptoprojectEnabled.png │ │ ├── featherLinkDisabled.png │ │ ├── interp_break_selected.png │ │ ├── interp_curve_selected.png │ │ ├── merge_grain_extract.png │ │ ├── motionTypePerspective.png │ │ ├── natronIcon256_linux.png │ │ ├── natronIcon256_windows.ico │ │ ├── outputPanelActivated.png │ │ ├── renderScale_checked.png │ │ ├── restoreDefaultEnabled.png │ │ ├── rotoPaintAddGroupIcon.png │ │ ├── rotoPaintAddLayerIcon.png │ │ ├── rotopaint_buildup_off.png │ │ ├── rotopaint_buildup_on.png │ │ ├── rotopaint_pressure_on.png │ │ ├── scrollbarButton_down.png │ │ ├── scrollbarButton_left.png │ │ ├── scrollbarButton_right.png │ │ ├── trackCurrentKeyframe.png │ │ ├── updateViewerDisabled.png │ │ ├── updateViewerEnabled.png │ │ ├── checkbox_dirty_checked.png │ │ ├── interp_curve_c_selected.png │ │ ├── interp_curve_h_selected.png │ │ ├── interp_curve_r_selected.png │ │ ├── interp_curve_z_selected.png │ │ ├── interp_linear_selected.png │ │ ├── loadProjectSplashscreen.png │ │ ├── natronProjectIcon_linux.png │ │ ├── natronProjectIcon_osx.icns │ │ ├── outputPanelDeactivated.png │ │ ├── restoreDefaultDisabled.png │ │ ├── rotoPaintRemoveItemIcon.png │ │ ├── rotopaint_pressure_off.png │ │ ├── stickySelectionDisabled.png │ │ ├── stickySelectionEnabled.png │ │ ├── checkbox_checked_hovered.png │ │ ├── checkbox_checked_readonly.png │ │ ├── checkbox_dirty_unchecked.png │ │ ├── interp_constant_selected.png │ │ ├── natronProjectIcon_windows.ico │ │ ├── rotoHideTransformOverlay.png │ │ ├── rotoShowTransformOverlay.png │ │ ├── scrollbarHandle_horizontal.png │ │ ├── scrollbarHandle_vertical.png │ │ ├── checkbox_animation1_checked.png │ │ ├── checkbox_animation2_checked.png │ │ ├── checkbox_animation3_checked.png │ │ ├── checkbox_unchecked_readonly.png │ │ ├── keyframe_node_root_selected.png │ │ ├── checkbox_animation1_unchecked.png │ │ ├── checkbox_animation2_unchecked.png │ │ ├── checkbox_animation3_unchecked.png │ │ ├── GroupingIcons │ │ │ ├── Set2 │ │ │ │ ├── 3D_grouping_2.png │ │ │ │ ├── color_grouping_2.png │ │ │ │ ├── deep_grouping_2.png │ │ │ │ ├── filter_grouping_2.png │ │ │ │ ├── image_grouping_2.png │ │ │ │ ├── keyer_grouping_2.png │ │ │ │ ├── merge_grouping_2.png │ │ │ │ ├── misc_grouping_2.png │ │ │ │ ├── other_grouping_2.png │ │ │ │ ├── paint_grouping_2.png │ │ │ │ ├── time_grouping_2.png │ │ │ │ ├── channel_grouping_2.png │ │ │ │ ├── toolsets_grouping_2.png │ │ │ │ ├── multiview_grouping_2.png │ │ │ │ └── transform_grouping_2.png │ │ │ ├── Set3 │ │ │ │ ├── 3D_grouping_3.png │ │ │ │ ├── 3D_grouping_3_512.png │ │ │ │ ├── color_grouping_3.png │ │ │ │ ├── deep_grouping_3.png │ │ │ │ ├── filter_grouping_3.png │ │ │ │ ├── image_grouping_3.png │ │ │ │ ├── keyer_grouping_3.png │ │ │ │ ├── merge_grouping_3.png │ │ │ │ ├── misc_grouping_3.png │ │ │ │ ├── other_grouping_3.png │ │ │ │ ├── paint_grouping_3.png │ │ │ │ ├── time_grouping_3.png │ │ │ │ ├── channel_grouping_3.png │ │ │ │ ├── deep_grouping_3_512.png │ │ │ │ ├── misc_grouping_3_512.png │ │ │ │ ├── time_grouping_3_512.png │ │ │ │ ├── toolsets_grouping_3.png │ │ │ │ ├── channel_grouping_3_512.png │ │ │ │ ├── color_grouping_3_512.png │ │ │ │ ├── filter_grouping_3_512.png │ │ │ │ ├── image_grouping_3_512.png │ │ │ │ ├── keyer_grouping_3_512.png │ │ │ │ ├── merge_grouping_3_512.png │ │ │ │ ├── multiview_grouping_3.png │ │ │ │ ├── other_grouping_3_512.png │ │ │ │ ├── paint_grouping_3_512.png │ │ │ │ ├── transform_grouping_3.png │ │ │ │ ├── multiview_grouping_3_512.png │ │ │ │ ├── toolsets_grouping_3_512.png │ │ │ │ └── transform_grouping_3_512.png │ │ │ └── Set1 │ │ │ │ ├── color_grouping_1.png │ │ │ │ ├── deep_grouping_1.png │ │ │ │ ├── filter_grouping_1.png │ │ │ │ ├── image_grouping_1.png │ │ │ │ ├── keyer_grouping_1.png │ │ │ │ ├── misc_grouping_1.png │ │ │ │ ├── paint_grouping_1.png │ │ │ │ ├── time_grouping_1.png │ │ │ │ ├── multiview_grouping_1.png │ │ │ │ └── transform_grouping_1.png │ │ ├── checkbox_animation1_checked_hovered.png │ │ ├── checkbox_animation2_checked_hovered.png │ │ ├── checkbox_animation3_checked_hovered.png │ │ ├── checkbox_animation1_unchecked_hovered.png │ │ ├── checkbox_animation2_unchecked_hovered.png │ │ └── checkbox_animation3_unchecked_hovered.png │ ├── PyPlugs │ │ ├── Fill.png │ │ ├── Glow.png │ │ ├── ZRemap.png │ │ ├── DropShadow.png │ │ ├── LightWrap.png │ │ ├── PIKColor.png │ │ ├── ViewerOCIO.png │ │ └── fr.inria.EdgeBlur.png │ ├── Fonts │ │ ├── DroidSans.ttf │ │ └── DroidSans-Bold.ttf │ └── etc │ │ └── fonts │ │ └── conf.d │ │ └── 51-local.conf └── NatronGui │ └── pytabwidget_wrapper.h ├── Documentation └── source │ ├── _static │ └── logo.png │ ├── devel │ ├── CE_loop.png │ ├── CE_negate.png │ ├── CE_reverse.png │ ├── helpButton.png │ ├── infoDialog.png │ ├── pluginID.png │ ├── subGroups.png │ ├── tabwidgets.png │ ├── userPage.png │ ├── warnDialog.png │ ├── errorDialog.png │ ├── exportButton.png │ ├── exportWindow.png │ ├── inputLabels.png │ ├── menuCommand.png │ ├── tabMenuGroup.png │ ├── writePython.png │ ├── addUserParams.png │ ├── blurExpression.png │ ├── customPaneEntry.png │ ├── exprIndicator.png │ ├── nodeScriptName.png │ ├── paneScriptName.png │ ├── paramScriptName.png │ ├── questionDialog.png │ ├── rotoScriptName.png │ ├── setExprDialog.png │ ├── shuffleSubLabel.png │ ├── toolbuttonGroup.png │ ├── trackScriptName.png │ ├── addNewParamDialog.png │ ├── customModalDialog.png │ ├── inputChangedPanel.png │ ├── manageUserParams.png │ ├── positionInteract.png │ ├── projectCallbacks.png │ ├── setExprRightClick.png │ ├── trackerScriptName.png │ ├── multiDimSetExprMenu.png │ ├── preferencesCallback.png │ ├── shuffleLabelExpression.png │ ├── settingsPanelExpression.png │ ├── settingsPanelParamChangedCB.png │ └── PythonReference │ │ └── NatronEngine │ │ ├── buttonParam.png │ │ ├── choiceParam.png │ │ ├── colorParam.png │ │ ├── doubleParam.png │ │ ├── groupAsTab.png │ │ ├── groupParam.png │ │ ├── pageParam.png │ │ ├── stringLabel.png │ │ ├── stringParam.png │ │ ├── booleanParam.png │ │ ├── double2DParam.png │ │ ├── double3DParam.png │ │ ├── multiLineString.png │ │ ├── multiPathParam.png │ │ ├── parametricParam.png │ │ └── multiLineRichTextParam.png │ ├── guide │ ├── _static │ │ └── logo.png │ ├── _images │ │ ├── hsvtool_01.png │ │ ├── hsvtool_02.png │ │ ├── hsvtool_03.png │ │ ├── hsvtool_04.png │ │ ├── hsvtool_05.png │ │ ├── hsvtool_06.png │ │ ├── hsvtool_07.png │ │ ├── hsvtool_08.png │ │ ├── hsvtool_09.png │ │ ├── hsvtool_10.png │ │ ├── hsvtool_11.png │ │ ├── hsvtool_12.png │ │ ├── hsvtool_13.png │ │ ├── multiview01.png │ │ ├── multiview02.png │ │ ├── multiview03.png │ │ ├── multiview04.png │ │ ├── multiview05.png │ │ ├── multiview06.png │ │ ├── multiview07.png │ │ ├── multiview08.png │ │ ├── multiview09.png │ │ ├── multiview10.png │ │ ├── multiview11.png │ │ ├── multiview12.png │ │ ├── multiview13.png │ │ ├── multiview14.png │ │ ├── mac_install_01.png │ │ ├── mac_install_02.png │ │ ├── svgworkflow_01.png │ │ ├── svgworkflow_02.png │ │ ├── svgworkflow_03.png │ │ ├── svgworkflow_04.png │ │ ├── svgworkflow_05.png │ │ ├── svgworkflow_06.png │ │ ├── svgworkflow_07.png │ │ ├── svgworkflow_08.png │ │ ├── svgworkflow_09.png │ │ ├── svgworkflow_10.png │ │ ├── win_install_01.png │ │ ├── win_install_02.png │ │ ├── win_install_03.png │ │ ├── win_install_04.png │ │ ├── win_install_05.png │ │ ├── win_install_06.png │ │ ├── win_install_07.png │ │ ├── win_install_08.png │ │ ├── win_install_09.png │ │ ├── win_install_10.png │ │ ├── win_install_11.png │ │ ├── linux_install_01.png │ │ ├── linux_install_02.png │ │ ├── linux_install_04.png │ │ ├── linux_install_05.png │ │ ├── linux_install_06.png │ │ ├── linux_install_07.png │ │ ├── linux_install_08.png │ │ ├── linux_install_09.png │ │ ├── linux_install_10.png │ │ ├── linux_install_11.png │ │ ├── linux_install_12.png │ │ ├── linux_install_13.png │ │ ├── linux_install_14.png │ │ └── AlternativeMatteExtraction │ │ │ ├── Despill.jpg │ │ │ ├── HeBeGreeen.jpg │ │ │ ├── AllColorLookup.jpg │ │ │ ├── Ip_ChillSpill.jpg │ │ │ ├── MatteReversed.jpg │ │ │ ├── ReversedMatte.jpg │ │ │ ├── ArticleCoverPage.jpg │ │ │ ├── ColorSuppression.jpg │ │ │ ├── Despill2-FullComp.jpg │ │ │ ├── Ip_ChillSpill-FullComp.jpg │ │ │ ├── Ip_ChillSpill-default.jpg │ │ │ ├── ColorSuppression-FullComp.jpg │ │ │ └── ColorSuppression-default.jpg │ ├── compositing-keying.rst │ ├── compositing-channels.rst │ ├── compositing-denoise.rst │ ├── compositing-merge.rst │ ├── compositing-projects-proxy.rst │ ├── tutorials-ffmpeg-audio.rst │ ├── tutorials-ffmpeg-hevc.rst │ ├── compositing-color.rst │ ├── compositing-projects-caching.rst │ ├── compositing-projects-setup.rst │ └── compositing-rotopaint.rst │ └── plugins │ ├── fr.inria.Fill.png │ ├── fr.inria.Glow.png │ ├── eu.cimg.Inpaint.png │ ├── fr.inria.ZRemap.png │ ├── eu.cimg.EdgeDetect.png │ ├── eu.cimg.EdgeExtend.png │ ├── fr.inria.LightWrap.png │ ├── fr.inria.PIKColor.png │ ├── net.sf.openfx.PIK.png │ ├── net.sf.openfx.Ramp.png │ ├── fr.inria.DropShadow.png │ ├── net.sf.cimg.CImgBlur.png │ ├── net.sf.openfx.Clamp.png │ ├── net.sf.openfx.Invert.png │ ├── net.sf.openfx.Mirror.png │ ├── net.sf.openfx.Noise.png │ ├── net.sf.openfx.Radial.png │ ├── net.sf.openfx.Retime.png │ ├── net.sf.openfx.STMap.png │ ├── fr.inria.openfx.ReadCDR.png │ ├── fr.inria.openfx.ReadPDF.png │ ├── fr.inria.openfx.ReadPFM.png │ ├── fr.inria.openfx.ReadPNG.png │ ├── fr.inria.openfx.SeExpr.png │ ├── net.fxarena.openfx.Arc.png │ ├── net.fxarena.openfx.Roll.png │ ├── net.fxarena.openfx.Text.png │ ├── net.fxarena.openfx.Tile.png │ ├── net.fxarena.openfx.Wave.png │ ├── net.sf.cimg.CImgBloom.png │ ├── net.sf.cimg.CImgDenoise.png │ ├── net.sf.cimg.CImgDilate.png │ ├── net.sf.cimg.CImgErode.png │ ├── net.sf.cimg.CImgGuided.png │ ├── net.sf.cimg.CImgHistEQ.png │ ├── net.sf.cimg.CImgNoise.png │ ├── net.sf.cimg.CImgPlasma.png │ ├── net.sf.cimg.CImgSharpen.png │ ├── net.sf.cimg.CImgSmooth.png │ ├── net.sf.openfx.AddPlugin.png │ ├── net.sf.openfx.ColorBars.png │ ├── net.sf.openfx.Despill.png │ ├── net.sf.openfx.DirBlur.png │ ├── net.sf.openfx.FrameHold.png │ ├── net.sf.openfx.GodRays.png │ ├── net.sf.openfx.HSVToRGB.png │ ├── net.sf.openfx.HueKeyer.png │ ├── net.sf.openfx.IDistort.png │ ├── net.sf.openfx.MergeIn.png │ ├── net.sf.openfx.MergeMax.png │ ├── net.sf.openfx.MergeMin.png │ ├── net.sf.openfx.MergeOut.png │ ├── net.sf.openfx.MergePlus.png │ ├── net.sf.openfx.Position.png │ ├── net.sf.openfx.Premult.png │ ├── net.sf.openfx.RGBToHSV.png │ ├── net.sf.openfx.Rectangle.png │ ├── net.sf.openfx.Reformat.png │ ├── net.sf.openfx.Shadertoy.png │ ├── net.sf.openfx.SlitScan.png │ ├── net.sf.openfx.Unpremult.png │ ├── fr.inria.openfx.ReadKrita.png │ ├── fr.inria.openfx.ReadMisc.png │ ├── fr.inria.openfx.ReadOIIO.png │ ├── fr.inria.openfx.RunScript.png │ ├── fr.inria.openfx.WriteOIIO.png │ ├── fr.inria.openfx.WritePFM.png │ ├── fr.inria.openfx.WritePNG.png │ ├── net.fxarena.openfx.Edges.png │ ├── net.fxarena.openfx.Polar.png │ ├── net.fxarena.openfx.Sketch.png │ ├── net.fxarena.openfx.Swirl.png │ ├── net.sf.cimg.CImgBilateral.png │ ├── net.sf.cimg.CImgEqualize.png │ ├── net.sf.cimg.CImgLaplacian.png │ ├── net.sf.openfx.ColorWheel.png │ ├── net.sf.openfx.CropPlugin.png │ ├── net.sf.openfx.Deinterlace.png │ ├── net.sf.openfx.FrameBlend.png │ ├── net.sf.openfx.FrameRange.png │ ├── net.sf.openfx.GammaPlugin.png │ ├── net.sf.openfx.GradePlugin.png │ ├── net.sf.openfx.HueCorrect.png │ ├── net.sf.openfx.KeyerPlugin.png │ ├── net.sf.openfx.LabToRGB709.png │ ├── net.sf.openfx.MergePlugin.png │ ├── net.sf.openfx.MergeScreen.png │ ├── net.sf.openfx.NoOpPlugin.png │ ├── net.sf.openfx.RGB709ToLab.png │ ├── net.sf.openfx.RGB709ToXYZ.png │ ├── net.sf.openfx.XYZToRGB709.png │ ├── net.sf.openfx.timeOffset.png │ ├── fr.inria.openfx.OCIODisplay.png │ ├── fr.inria.openfx.OIIOResize.png │ ├── fr.inria.openfx.OpenRaster.png │ ├── fr.inria.openfx.ReadFFmpeg.png │ ├── fr.inria.openfx.WriteFFmpeg.png │ ├── net.fxarena.openfx.Charcoal.png │ ├── net.fxarena.openfx.Implode.png │ ├── net.fxarena.openfx.Modulate.png │ ├── net.fxarena.openfx.Oilpaint.png │ ├── net.fxarena.openfx.Polaroid.png │ ├── net.fxarena.openfx.ReadPSD.png │ ├── net.fxarena.openfx.ReadSVG.png │ ├── net.fxarena.openfx.Texture.png │ ├── net.sf.cimg.CImgChromaBlur.png │ ├── net.sf.cimg.CImgErodeSmooth.png │ ├── net.sf.cimg.CImgExpression.png │ ├── net.sf.cimg.CImgSharpenShock.png │ ├── net.sf.openfx.ClipTestPlugin.png │ ├── net.sf.openfx.ConstantPlugin.png │ ├── net.sf.openfx.DissolvePlugin.png │ ├── net.sf.openfx.HSVToolPlugin.png │ ├── net.sf.openfx.LensDistortion.png │ ├── net.sf.openfx.MergeMultiply.png │ ├── net.sf.openfx.MultiplyPlugin.png │ ├── net.sf.openfx.ShufflePlugin.png │ ├── net.sf.openfx.anaglyphPlugin.png │ ├── net.sf.openfx.mixViewsPlugin.png │ ├── net.sf.openfx.switchPlugin.png │ ├── fr.inria.openfx.OCIOColorSpace.png │ ├── fr.inria.openfx.OCIOLogConvert.png │ ├── net.fxarena.openfx.Reflection.png │ ├── net.sf.cimg.CImgSharpenInvDiff.png │ ├── net.sf.openfx.AdjustRoDPlugin.png │ ├── net.sf.openfx.CornerPinPlugin.png │ ├── net.sf.openfx.DifferencePlugin.png │ ├── net.sf.openfx.ImageStatistics.png │ ├── net.sf.openfx.MergeDifference.png │ ├── net.sf.openfx.SaturationPlugin.png │ ├── net.sf.openfx.TransformPlugin.png │ ├── net.sf.openfx.sideBySidePlugin.png │ ├── fr.inria.openfx.OCIOCDLTransform.png │ ├── fr.inria.openfx.OCIOFileTransform.png │ ├── fr.inria.openfx.OCIOLookTransform.png │ ├── net.sf.cimg.CImgRollingGuidance.png │ ├── net.sf.openfx.CheckerBoardPlugin.png │ ├── net.sf.openfx.ChromaKeyerPlugin.png │ ├── net.sf.openfx.ColorCorrectPlugin.png │ ├── net.sf.openfx.ColorLookupPlugin.png │ ├── net.sf.openfx.ColorMatrixPlugin.png │ ├── net.sf.openfx.VectorToColorPlugin.png │ ├── net.sf.openfx.CornerPinMaskedPlugin.png │ ├── net.sf.openfx.TransformMaskedPlugin.png │ ├── net.sf.openfx.MergeIn.rst │ ├── net.sf.openfx.MergeMax.rst │ ├── net.sf.openfx.MergeMin.rst │ ├── net.sf.openfx.MergeOut.rst │ ├── net.sf.openfx.MergePlus.rst │ ├── net.sf.openfx.MergeMatte.rst │ ├── net.sf.openfx.MergeScreen.rst │ └── net.sf.openfx.MergeMultiply.rst └── Global ├── plugin-branches.sh └── GitVersion.h /libs/glog/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/dummy.ntp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ceres/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Engine/RotoPaintPlanarTrackerImpl.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/Eigen3/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/gflags/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | google-gflags@googlegroups.com 2 | 3 | -------------------------------------------------------------------------------- /libs/Eigen3/Eigen/Eigen: -------------------------------------------------------------------------------- 1 | #include "Dense" 2 | //#include "Sparse" 3 | -------------------------------------------------------------------------------- /libs/hoedown/test/Tests/Underline.text: -------------------------------------------------------------------------------- 1 | This _underline_ will work. 2 | -------------------------------------------------------------------------------- /libs/libmv/third_party/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory(ceres) 3 | -------------------------------------------------------------------------------- /libs/qhttpserver/qhttpserver.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS += src 3 | -------------------------------------------------------------------------------- /libs/hoedown/test/Tests/Underline.html: -------------------------------------------------------------------------------- 1 |
This underline will work.
2 | -------------------------------------------------------------------------------- /tools/MacPorts/aqua/qt4-mac/files/cpath/cpath_test.h: -------------------------------------------------------------------------------- 1 | extern int test_cpath; 2 | -------------------------------------------------------------------------------- /tools/MacPorts/aqua/qt4-mac/files/library_path/library_path_lib.c: -------------------------------------------------------------------------------- 1 | int test_cpath; 2 | -------------------------------------------------------------------------------- /tools/MacPorts/aqua/qt4-mac/files/library_path/library_path_lib.h: -------------------------------------------------------------------------------- 1 | extern int test_cpath; 2 | -------------------------------------------------------------------------------- /tools/MacPorts/devel/cppunit/README.txt: -------------------------------------------------------------------------------- 1 | use cppuinit 1.13.2 because 1.14.0 requires C++11 2 | -------------------------------------------------------------------------------- /libs/libmv/third_party/SConscript: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | SConscript(['ceres/SConscript']) 4 | -------------------------------------------------------------------------------- /tools/MacPorts/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd `dirname $0` 3 | rm -rf `find . -name work -o -name '*~'` 4 | -------------------------------------------------------------------------------- /Gui/Resources/Images/mix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/mix.png -------------------------------------------------------------------------------- /libs/yaml-cpp/src/null.cpp: -------------------------------------------------------------------------------- 1 | #include "yaml-cpp/null.h" 2 | 3 | namespace YAML { 4 | _Null Null; 5 | } 6 | -------------------------------------------------------------------------------- /Gui/Resources/Images/addKF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/addKF.png -------------------------------------------------------------------------------- /Gui/Resources/Images/back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/back1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/bezier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/bezier.png -------------------------------------------------------------------------------- /Gui/Resources/Images/bounce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/bounce.png -------------------------------------------------------------------------------- /Gui/Resources/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/close.png -------------------------------------------------------------------------------- /Gui/Resources/Images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/cursor.png -------------------------------------------------------------------------------- /Gui/Resources/Images/curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/curve.png -------------------------------------------------------------------------------- /Gui/Resources/Images/expoON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/expoON.png -------------------------------------------------------------------------------- /Gui/Resources/Images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/help.png -------------------------------------------------------------------------------- /Gui/Resources/Images/layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/layer.png -------------------------------------------------------------------------------- /Gui/Resources/Images/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/layout.png -------------------------------------------------------------------------------- /Gui/Resources/Images/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/locked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/nextKF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/nextKF.png -------------------------------------------------------------------------------- /Gui/Resources/Images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/play.png -------------------------------------------------------------------------------- /Gui/Resources/Images/prevKF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/prevKF.png -------------------------------------------------------------------------------- /Gui/Resources/Images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/redo.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rewind.png -------------------------------------------------------------------------------- /Gui/Resources/Images/soloOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/soloOn.png -------------------------------------------------------------------------------- /Gui/Resources/Images/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/source.png -------------------------------------------------------------------------------- /Gui/Resources/Images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/undo.png -------------------------------------------------------------------------------- /Gui/Resources/PyPlugs/Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/PyPlugs/Fill.png -------------------------------------------------------------------------------- /Gui/Resources/PyPlugs/Glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/PyPlugs/Glow.png -------------------------------------------------------------------------------- /libs/hoedown/test/MarkdownTest_1.0.3/Tests/Nested blockquotes.text: -------------------------------------------------------------------------------- 1 | > foo 2 | > 3 | > > bar 4 | > 5 | > foo 6 | -------------------------------------------------------------------------------- /libs/openMVG/openMVG/stl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | UNIT_TEST(openMVG split "") 2 | UNIT_TEST(openMVG dynamic_bitset "") 3 | -------------------------------------------------------------------------------- /Gui/Resources/Fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Fonts/DroidSans.ttf -------------------------------------------------------------------------------- /Gui/Resources/Images/addTrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/addTrack.png -------------------------------------------------------------------------------- /Gui/Resources/Images/bezier32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/bezier32.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox.png -------------------------------------------------------------------------------- /Gui/Resources/Images/closeTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/closeTab.png -------------------------------------------------------------------------------- /Gui/Resources/Images/combobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/combobox.png -------------------------------------------------------------------------------- /Gui/Resources/Images/dot_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/dot_icon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/ellipse.png -------------------------------------------------------------------------------- /Gui/Resources/Images/expoOFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/expoOFF.png -------------------------------------------------------------------------------- /Gui/Resources/Images/forward1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/forward1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/gammaOFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/gammaOFF.png -------------------------------------------------------------------------------- /Gui/Resources/Images/gammaON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/gammaON.png -------------------------------------------------------------------------------- /Gui/Resources/Images/inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/inverted.png -------------------------------------------------------------------------------- /Gui/Resources/Images/lifetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/lifetime.png -------------------------------------------------------------------------------- /Gui/Resources/Images/loopmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/loopmode.png -------------------------------------------------------------------------------- /Gui/Resources/Images/maskOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/maskOff.png -------------------------------------------------------------------------------- /Gui/Resources/Images/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/maximize.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_in.png -------------------------------------------------------------------------------- /Gui/Resources/Images/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/minimize.png -------------------------------------------------------------------------------- /Gui/Resources/Images/nextIncr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/nextIncr.png -------------------------------------------------------------------------------- /Gui/Resources/Images/playOnce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/playOnce.png -------------------------------------------------------------------------------- /Gui/Resources/Images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/refresh.png -------------------------------------------------------------------------------- /Gui/Resources/Images/removeKF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/removeKF.png -------------------------------------------------------------------------------- /Gui/Resources/Images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/settings.png -------------------------------------------------------------------------------- /Gui/Resources/Images/soloOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/soloOff.png -------------------------------------------------------------------------------- /Gui/Resources/Images/turbo_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/turbo_on.png -------------------------------------------------------------------------------- /Gui/Resources/Images/unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/unlocked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/visible.png -------------------------------------------------------------------------------- /Gui/Resources/Images/zebra_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/zebra_on.png -------------------------------------------------------------------------------- /Gui/Resources/PyPlugs/ZRemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/PyPlugs/ZRemap.png -------------------------------------------------------------------------------- /Gui/Resources/Images/DS_CE_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/DS_CE_Icon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/addPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/addPoints.png -------------------------------------------------------------------------------- /Gui/Resources/Images/addUserKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/addUserKey.png -------------------------------------------------------------------------------- /Gui/Resources/Images/clearOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/clearOutput.png -------------------------------------------------------------------------------- /Gui/Resources/Images/closePanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/closePanel.png -------------------------------------------------------------------------------- /Gui/Resources/Images/colorwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/colorwheel.png -------------------------------------------------------------------------------- /Gui/Resources/Images/cuspPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/cuspPoints.png -------------------------------------------------------------------------------- /Gui/Resources/Images/enter_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/enter_group.png -------------------------------------------------------------------------------- /Gui/Resources/Images/execScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/execScript.png -------------------------------------------------------------------------------- /Gui/Resources/Images/firstFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/firstFrame.png -------------------------------------------------------------------------------- /Gui/Resources/Images/fullFrameOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/fullFrameOn.png -------------------------------------------------------------------------------- /Gui/Resources/Images/group_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/group_icon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/input_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/input_icon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/lastFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/lastFrame.png -------------------------------------------------------------------------------- /Gui/Resources/Images/linkCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/linkCursor.png -------------------------------------------------------------------------------- /Gui/Resources/Images/loadScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/loadScript.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_color.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_copy.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_from.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_from.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_hue.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_hypot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_hypot.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_mask.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_matte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_matte.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_max.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_min.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_minus.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_out.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_over.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_plus.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_under.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_under.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_xor.png -------------------------------------------------------------------------------- /Gui/Resources/Images/motionTypeT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/motionTypeT.png -------------------------------------------------------------------------------- /Gui/Resources/Images/natronIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/natronIcon.icns -------------------------------------------------------------------------------- /Gui/Resources/Images/natronIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/natronIcon.pdf -------------------------------------------------------------------------------- /Gui/Resources/Images/nextScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/nextScript.png -------------------------------------------------------------------------------- /Gui/Resources/Images/nextUserKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/nextUserKey.png -------------------------------------------------------------------------------- /Gui/Resources/Images/oneViewNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/oneViewNode.png -------------------------------------------------------------------------------- /Gui/Resources/Images/open-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/open-file.png -------------------------------------------------------------------------------- /Gui/Resources/Images/openeffects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/openeffects.png -------------------------------------------------------------------------------- /Gui/Resources/Images/output_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/output_icon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/patternSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/patternSize.png -------------------------------------------------------------------------------- /Gui/Resources/Images/prevUserKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/prevUserKey.png -------------------------------------------------------------------------------- /Gui/Resources/Images/readImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/readImage.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rectangle.png -------------------------------------------------------------------------------- /Gui/Resources/Images/renderScale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/renderScale.png -------------------------------------------------------------------------------- /Gui/Resources/Images/roto_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/roto_merge.png -------------------------------------------------------------------------------- /Gui/Resources/Images/saveScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/saveScript.png -------------------------------------------------------------------------------- /Gui/Resources/Images/searchSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/searchSize.png -------------------------------------------------------------------------------- /Gui/Resources/Images/stopEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/stopEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/timeOffset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/timeOffset.png -------------------------------------------------------------------------------- /Gui/Resources/Images/timelineIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/timelineIn.png -------------------------------------------------------------------------------- /Gui/Resources/Images/timelineOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/timelineOut.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackNext.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackPrev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackPrev.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackRange.png -------------------------------------------------------------------------------- /Gui/Resources/Images/turbo_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/turbo_off.png -------------------------------------------------------------------------------- /Gui/Resources/Images/uninverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/uninverted.png -------------------------------------------------------------------------------- /Gui/Resources/Images/unvisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/unvisible.png -------------------------------------------------------------------------------- /Gui/Resources/Images/viewer_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/viewer_icon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/writeImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/writeImage.png -------------------------------------------------------------------------------- /Gui/Resources/Images/zebra_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/zebra_off.png -------------------------------------------------------------------------------- /Gui/Resources/PyPlugs/DropShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/PyPlugs/DropShadow.png -------------------------------------------------------------------------------- /Gui/Resources/PyPlugs/LightWrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/PyPlugs/LightWrap.png -------------------------------------------------------------------------------- /Gui/Resources/PyPlugs/PIKColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/PyPlugs/PIKColor.png -------------------------------------------------------------------------------- /Gui/Resources/PyPlugs/ViewerOCIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/PyPlugs/ViewerOCIO.png -------------------------------------------------------------------------------- /libs/openMVG/openMVG/sfm/pipelines/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | ADD_SUBDIRECTORY(sequential) 3 | ADD_SUBDIRECTORY(global) 4 | 5 | -------------------------------------------------------------------------------- /tools/license/natron-cla-entity.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/tools/license/natron-cla-entity.odt -------------------------------------------------------------------------------- /Documentation/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/_static/logo.png -------------------------------------------------------------------------------- /Documentation/source/devel/CE_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/CE_loop.png -------------------------------------------------------------------------------- /Gui/Resources/Fonts/DroidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Fonts/DroidSans-Bold.ttf -------------------------------------------------------------------------------- /Gui/Resources/Images/AutoContrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/AutoContrast.png -------------------------------------------------------------------------------- /Gui/Resources/Images/CornerPinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/CornerPinIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/DopeSheetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/DopeSheetIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/NodeGraphIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/NodeGraphIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/backdrop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/backdrop_icon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/bold_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/bold_checked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/centerOnTrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/centerOnTrack.png -------------------------------------------------------------------------------- /Gui/Resources/Images/centerViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/centerViewer.png -------------------------------------------------------------------------------- /Gui/Resources/Images/color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/color_picker.png -------------------------------------------------------------------------------- /Gui/Resources/Images/fullFrameOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/fullFrameOff.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_break.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_linear.png -------------------------------------------------------------------------------- /Gui/Resources/Images/joinViewsNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/joinViewsNode.png -------------------------------------------------------------------------------- /Gui/Resources/Images/layout_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/layout_anchor.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_average.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_average.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_divide.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_overlay.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_screen.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_stencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_stencil.png -------------------------------------------------------------------------------- /Gui/Resources/Images/motionTypeRT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/motionTypeRT.png -------------------------------------------------------------------------------- /Gui/Resources/Images/motionTypeRTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/motionTypeRTS.png -------------------------------------------------------------------------------- /Gui/Resources/Images/motionTypeTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/motionTypeTS.png -------------------------------------------------------------------------------- /Gui/Resources/Images/pauseDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/pauseDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/pauseEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/pauseEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/play_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/play_enabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/previousIncr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/previousIncr.png -------------------------------------------------------------------------------- /Gui/Resources/Images/refreshActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/refreshActive.png -------------------------------------------------------------------------------- /Gui/Resources/Images/removeFeather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/removeFeather.png -------------------------------------------------------------------------------- /Gui/Resources/Images/removePoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/removePoints.png -------------------------------------------------------------------------------- /Gui/Resources/Images/removeUserKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/removeUserKey.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotoNodeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotoNodeIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/selectCurves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/selectCurves.png -------------------------------------------------------------------------------- /Gui/Resources/Images/selectFeather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/selectFeather.png -------------------------------------------------------------------------------- /Gui/Resources/Images/selectPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/selectPoints.png -------------------------------------------------------------------------------- /Gui/Resources/Images/smoothPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/smoothPoints.png -------------------------------------------------------------------------------- /Gui/Resources/Images/splashscreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/splashscreen.jpg -------------------------------------------------------------------------------- /Gui/Resources/Images/stopDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/stopDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/stopTracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/stopTracking.png -------------------------------------------------------------------------------- /Gui/Resources/Images/treeview_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/treeview_end.png -------------------------------------------------------------------------------- /Gui/Resources/Images/treeview_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/treeview_more.png -------------------------------------------------------------------------------- /libs/openMVG/openMVG/tracks/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | UNIT_TEST(openMVG tracks "${LEMON_LIBRARY}") 3 | 4 | -------------------------------------------------------------------------------- /Documentation/source/devel/CE_negate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/CE_negate.png -------------------------------------------------------------------------------- /Documentation/source/devel/CE_reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/CE_reverse.png -------------------------------------------------------------------------------- /Documentation/source/devel/helpButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/helpButton.png -------------------------------------------------------------------------------- /Documentation/source/devel/infoDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/infoDialog.png -------------------------------------------------------------------------------- /Documentation/source/devel/pluginID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/pluginID.png -------------------------------------------------------------------------------- /Documentation/source/devel/subGroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/subGroups.png -------------------------------------------------------------------------------- /Documentation/source/devel/tabwidgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/tabwidgets.png -------------------------------------------------------------------------------- /Documentation/source/devel/userPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/userPage.png -------------------------------------------------------------------------------- /Documentation/source/devel/warnDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/warnDialog.png -------------------------------------------------------------------------------- /Gui/Resources/Images/AutoContrastON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/AutoContrastON.png -------------------------------------------------------------------------------- /Gui/Resources/Images/CurveEditorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/CurveEditorIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/PropertiesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/PropertiesIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/ScriptEditorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/ScriptEditorIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/ViewerPanelIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/ViewerPanelIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/bold_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/bold_unchecked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_checked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_hovered.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkerboard_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkerboard_off.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkerboard_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkerboard_on.png -------------------------------------------------------------------------------- /Gui/Resources/Images/clearAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/clearAnimation.png -------------------------------------------------------------------------------- /Gui/Resources/Images/clearAnimationBw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/clearAnimationBw.png -------------------------------------------------------------------------------- /Gui/Resources/Images/clearAnimationFw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/clearAnimationFw.png -------------------------------------------------------------------------------- /Gui/Resources/Images/closeTab_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/closeTab_hovered.png -------------------------------------------------------------------------------- /Gui/Resources/Images/diskcache_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/diskcache_icon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/featherDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/featherDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/featherEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/featherEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/groupbox_folded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/groupbox_folded.png -------------------------------------------------------------------------------- /Gui/Resources/Images/hideTrackError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/hideTrackError.png -------------------------------------------------------------------------------- /Gui/Resources/Images/hide_unmodified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/hide_unmodified.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_constant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_constant.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_c.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_h.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_r.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_z.png -------------------------------------------------------------------------------- /Gui/Resources/Images/italic_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/italic_checked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/italic_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/italic_unchecked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/linkMultCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/linkMultCursor.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_color_burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_color_burn.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_difference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_difference.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_exclusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_exclusion.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_geometric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_geometric.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_hardlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_hardlight.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_luminosity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_luminosity.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_multiply.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_pinlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_pinlight.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_saturation.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_softlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_softlight.png -------------------------------------------------------------------------------- /Gui/Resources/Images/motionTypeAffine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/motionTypeAffine.png -------------------------------------------------------------------------------- /Gui/Resources/Images/openCloseCurve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/openCloseCurve.png -------------------------------------------------------------------------------- /Gui/Resources/Images/precompNodeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/precompNodeIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/pressed_combobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/pressed_combobox.png -------------------------------------------------------------------------------- /Gui/Resources/Images/previousScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/previousScript.png -------------------------------------------------------------------------------- /Gui/Resources/Images/redo_grayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/redo_grayscale.png -------------------------------------------------------------------------------- /Gui/Resources/Images/removeUserKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/removeUserKeys.png -------------------------------------------------------------------------------- /Gui/Resources/Images/resetTrackOffset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/resetTrackOffset.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rewind_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rewind_enabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotoToolPencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotoToolPencil.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_blur.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_burn.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_clone.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_dodge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_dodge.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_eraser.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_reveal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_reveal.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_smear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_smear.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_solid.png -------------------------------------------------------------------------------- /Gui/Resources/Images/showTrackError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/showTrackError.png -------------------------------------------------------------------------------- /Gui/Resources/Images/splitVertically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/splitVertically.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackBackwardOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackBackwardOff.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackBackwardOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackBackwardOn.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackForwardOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackForwardOff.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackForwardOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackForwardOn.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackerNodeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackerNodeIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/treeview_vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/treeview_vline.png -------------------------------------------------------------------------------- /Gui/Resources/Images/undo_grayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/undo_grayscale.png -------------------------------------------------------------------------------- /tools/license/natron-cla-individual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/tools/license/natron-cla-individual.odt -------------------------------------------------------------------------------- /Documentation/source/devel/errorDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/errorDialog.png -------------------------------------------------------------------------------- /Documentation/source/devel/exportButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/exportButton.png -------------------------------------------------------------------------------- /Documentation/source/devel/exportWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/exportWindow.png -------------------------------------------------------------------------------- /Documentation/source/devel/inputLabels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/inputLabels.png -------------------------------------------------------------------------------- /Documentation/source/devel/menuCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/menuCommand.png -------------------------------------------------------------------------------- /Documentation/source/devel/tabMenuGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/tabMenuGroup.png -------------------------------------------------------------------------------- /Documentation/source/devel/writePython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/writePython.png -------------------------------------------------------------------------------- /Documentation/source/guide/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_static/logo.png -------------------------------------------------------------------------------- /Gui/Resources/Images/ProgressPanelIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/ProgressPanelIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/autoKeyingDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/autoKeyingDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/autoKeyingEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/autoKeyingEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/colorwheel_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/colorwheel_overlay.png -------------------------------------------------------------------------------- /Gui/Resources/Images/createKeyOnMoveOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/createKeyOnMoveOff.png -------------------------------------------------------------------------------- /Gui/Resources/Images/createKeyOnMoveOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/createKeyOnMoveOn.png -------------------------------------------------------------------------------- /Gui/Resources/Images/featherLinkEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/featherLinkEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/groupbox_unfolded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/groupbox_unfolded.png -------------------------------------------------------------------------------- /Gui/Resources/Images/keyframe_node_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/keyframe_node_root.png -------------------------------------------------------------------------------- /Gui/Resources/Images/loadAndExecScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/loadAndExecScript.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_color_dodge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_color_dodge.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_grain_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_grain_merge.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rippleEditDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rippleEditDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rippleEditEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rippleEditEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_sharpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_sharpen.png -------------------------------------------------------------------------------- /Gui/Resources/Images/scrollbarButton_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/scrollbarButton_up.png -------------------------------------------------------------------------------- /Gui/Resources/Images/splitHorizontally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/splitHorizontally.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackAllKeyframes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackAllKeyframes.png -------------------------------------------------------------------------------- /Gui/Resources/Images/unhide_unmodified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/unhide_unmodified.png -------------------------------------------------------------------------------- /Gui/Resources/Images/viewer_roiDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/viewer_roiDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/viewer_roiEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/viewer_roiEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/PyPlugs/fr.inria.EdgeBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/PyPlugs/fr.inria.EdgeBlur.png -------------------------------------------------------------------------------- /libs/Eigen3/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- 1 | #ifdef EIGEN_MPL2_ONLY 2 | #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode 3 | #endif 4 | -------------------------------------------------------------------------------- /Documentation/source/devel/addUserParams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/addUserParams.png -------------------------------------------------------------------------------- /Documentation/source/devel/blurExpression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/blurExpression.png -------------------------------------------------------------------------------- /Documentation/source/devel/customPaneEntry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/customPaneEntry.png -------------------------------------------------------------------------------- /Documentation/source/devel/exprIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/exprIndicator.png -------------------------------------------------------------------------------- /Documentation/source/devel/nodeScriptName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/nodeScriptName.png -------------------------------------------------------------------------------- /Documentation/source/devel/paneScriptName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/paneScriptName.png -------------------------------------------------------------------------------- /Documentation/source/devel/paramScriptName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/paramScriptName.png -------------------------------------------------------------------------------- /Documentation/source/devel/questionDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/questionDialog.png -------------------------------------------------------------------------------- /Documentation/source/devel/rotoScriptName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/rotoScriptName.png -------------------------------------------------------------------------------- /Documentation/source/devel/setExprDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/setExprDialog.png -------------------------------------------------------------------------------- /Documentation/source/devel/shuffleSubLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/shuffleSubLabel.png -------------------------------------------------------------------------------- /Documentation/source/devel/toolbuttonGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/toolbuttonGroup.png -------------------------------------------------------------------------------- /Documentation/source/devel/trackScriptName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/trackScriptName.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.Fill.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.Glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.Glow.png -------------------------------------------------------------------------------- /Gui/Resources/Images/cliptoprojectDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/cliptoprojectDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/cliptoprojectEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/cliptoprojectEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/featherLinkDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/featherLinkDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_break_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_break_selected.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_selected.png -------------------------------------------------------------------------------- /Gui/Resources/Images/merge_grain_extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/merge_grain_extract.png -------------------------------------------------------------------------------- /Gui/Resources/Images/motionTypePerspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/motionTypePerspective.png -------------------------------------------------------------------------------- /Gui/Resources/Images/natronIcon256_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/natronIcon256_linux.png -------------------------------------------------------------------------------- /Gui/Resources/Images/natronIcon256_windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/natronIcon256_windows.ico -------------------------------------------------------------------------------- /Gui/Resources/Images/outputPanelActivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/outputPanelActivated.png -------------------------------------------------------------------------------- /Gui/Resources/Images/renderScale_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/renderScale_checked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/restoreDefaultEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/restoreDefaultEnabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotoPaintAddGroupIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotoPaintAddGroupIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotoPaintAddLayerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotoPaintAddLayerIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_buildup_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_buildup_off.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_buildup_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_buildup_on.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_pressure_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_pressure_on.png -------------------------------------------------------------------------------- /Gui/Resources/Images/scrollbarButton_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/scrollbarButton_down.png -------------------------------------------------------------------------------- /Gui/Resources/Images/scrollbarButton_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/scrollbarButton_left.png -------------------------------------------------------------------------------- /Gui/Resources/Images/scrollbarButton_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/scrollbarButton_right.png -------------------------------------------------------------------------------- /Gui/Resources/Images/trackCurrentKeyframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/trackCurrentKeyframe.png -------------------------------------------------------------------------------- /Gui/Resources/Images/updateViewerDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/updateViewerDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/updateViewerEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/updateViewerEnabled.png -------------------------------------------------------------------------------- /libs/openMVG/openMVG/image/image_test/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/libs/openMVG/openMVG/image/image_test/lena.png -------------------------------------------------------------------------------- /tools/MacPorts/multimedia/bino/files/Bino.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/tools/MacPorts/multimedia/bino/files/Bino.icns -------------------------------------------------------------------------------- /Documentation/source/devel/addNewParamDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/addNewParamDialog.png -------------------------------------------------------------------------------- /Documentation/source/devel/customModalDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/customModalDialog.png -------------------------------------------------------------------------------- /Documentation/source/devel/inputChangedPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/inputChangedPanel.png -------------------------------------------------------------------------------- /Documentation/source/devel/manageUserParams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/manageUserParams.png -------------------------------------------------------------------------------- /Documentation/source/devel/positionInteract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/positionInteract.png -------------------------------------------------------------------------------- /Documentation/source/devel/projectCallbacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/projectCallbacks.png -------------------------------------------------------------------------------- /Documentation/source/devel/setExprRightClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/setExprRightClick.png -------------------------------------------------------------------------------- /Documentation/source/devel/trackerScriptName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/trackerScriptName.png -------------------------------------------------------------------------------- /Documentation/source/plugins/eu.cimg.Inpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/eu.cimg.Inpaint.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.ZRemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.ZRemap.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_dirty_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_dirty_checked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_c_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_c_selected.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_h_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_h_selected.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_r_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_r_selected.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_curve_z_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_curve_z_selected.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_linear_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_linear_selected.png -------------------------------------------------------------------------------- /Gui/Resources/Images/loadProjectSplashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/loadProjectSplashscreen.png -------------------------------------------------------------------------------- /Gui/Resources/Images/natronProjectIcon_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/natronProjectIcon_linux.png -------------------------------------------------------------------------------- /Gui/Resources/Images/natronProjectIcon_osx.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/natronProjectIcon_osx.icns -------------------------------------------------------------------------------- /Gui/Resources/Images/outputPanelDeactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/outputPanelDeactivated.png -------------------------------------------------------------------------------- /Gui/Resources/Images/restoreDefaultDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/restoreDefaultDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotoPaintRemoveItemIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotoPaintRemoveItemIcon.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotopaint_pressure_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotopaint_pressure_off.png -------------------------------------------------------------------------------- /Gui/Resources/Images/stickySelectionDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/stickySelectionDisabled.png -------------------------------------------------------------------------------- /Gui/Resources/Images/stickySelectionEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/stickySelectionEnabled.png -------------------------------------------------------------------------------- /tools/MacPorts/findnonstatic.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for i in /opt/local/lib/lib*[^0-9].dylib; do ls `echo $i|sed -e s/dylib/a/` > /dev/null; done 3 | 4 | -------------------------------------------------------------------------------- /Documentation/source/devel/multiDimSetExprMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/multiDimSetExprMenu.png -------------------------------------------------------------------------------- /Documentation/source/devel/preferencesCallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/preferencesCallback.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_01.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_02.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_03.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_04.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_05.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_06.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_07.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_08.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_09.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_10.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_11.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_12.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/hsvtool_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/hsvtool_13.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview01.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview02.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview03.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview04.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview05.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview06.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview07.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview08.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview09.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview10.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview11.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview12.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview13.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/multiview14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/multiview14.png -------------------------------------------------------------------------------- /Documentation/source/plugins/eu.cimg.EdgeDetect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/eu.cimg.EdgeDetect.png -------------------------------------------------------------------------------- /Documentation/source/plugins/eu.cimg.EdgeExtend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/eu.cimg.EdgeExtend.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.LightWrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.LightWrap.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.PIKColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.PIKColor.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.PIK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.PIK.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Ramp.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_checked_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_checked_hovered.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_checked_readonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_checked_readonly.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_dirty_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_dirty_unchecked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/interp_constant_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/interp_constant_selected.png -------------------------------------------------------------------------------- /Gui/Resources/Images/natronProjectIcon_windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/natronProjectIcon_windows.ico -------------------------------------------------------------------------------- /Gui/Resources/Images/rotoHideTransformOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotoHideTransformOverlay.png -------------------------------------------------------------------------------- /Gui/Resources/Images/rotoShowTransformOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/rotoShowTransformOverlay.png -------------------------------------------------------------------------------- /Gui/Resources/Images/scrollbarHandle_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/scrollbarHandle_horizontal.png -------------------------------------------------------------------------------- /Gui/Resources/Images/scrollbarHandle_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/scrollbarHandle_vertical.png -------------------------------------------------------------------------------- /libs/hoedown/test/Tests/Formatting in Table of Contents.text: -------------------------------------------------------------------------------- 1 | # Header with special & characters 2 | 3 | ## With `Code` 4 | 5 | ### With *Emphasis* 6 | -------------------------------------------------------------------------------- /tools/MacPorts/lang/gcc6/files/mp-gcc6: -------------------------------------------------------------------------------- 1 | bin/gcc-mp-6 2 | bin/cpp-mp-6 3 | bin/c++-mp-6 4 | bin/g++-mp-6 5 | - 6 | bin/gcov-mp-6 7 | bin/gfortran-mp-6 8 | -------------------------------------------------------------------------------- /tools/MacPorts/lang/gcc7/files/mp-gcc7: -------------------------------------------------------------------------------- 1 | bin/gcc-mp-7 2 | bin/cpp-mp-7 3 | bin/c++-mp-7 4 | bin/g++-mp-7 5 | - 6 | bin/gcov-mp-7 7 | bin/gfortran-mp-7 8 | -------------------------------------------------------------------------------- /Documentation/source/devel/shuffleLabelExpression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/shuffleLabelExpression.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/mac_install_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/mac_install_01.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/mac_install_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/mac_install_02.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_01.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_02.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_03.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_04.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_05.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_06.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_07.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_08.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_09.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/svgworkflow_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/svgworkflow_10.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_01.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_02.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_03.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_04.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_05.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_06.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_07.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_08.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_09.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_10.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/win_install_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/win_install_11.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.DropShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.DropShadow.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgBlur.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Clamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Clamp.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Invert.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Mirror.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Noise.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Radial.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Retime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Retime.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.STMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.STMap.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation1_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation1_checked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation2_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation2_checked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation3_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation3_checked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_unchecked_readonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_unchecked_readonly.png -------------------------------------------------------------------------------- /Gui/Resources/Images/keyframe_node_root_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/keyframe_node_root_selected.png -------------------------------------------------------------------------------- /libs/hoedown/test/MarkdownTest_1.0.3/Tests/Tidyness.text: -------------------------------------------------------------------------------- 1 | > A list within a blockquote: 2 | > 3 | > * asterisk 1 4 | > * asterisk 2 5 | > * asterisk 3 6 | -------------------------------------------------------------------------------- /libs/openMVG/openMVG/image/image_test/two_pixels.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/libs/openMVG/openMVG/image/image_test/two_pixels.pgm -------------------------------------------------------------------------------- /libs/openMVG/openMVG/image/image_test/two_pixels.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/libs/openMVG/openMVG/image/image_test/two_pixels.ppm -------------------------------------------------------------------------------- /Documentation/source/devel/settingsPanelExpression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/settingsPanelExpression.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_01.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_02.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_04.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_05.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_06.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_07.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_08.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_09.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_10.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_11.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_12.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_13.png -------------------------------------------------------------------------------- /Documentation/source/guide/_images/linux_install_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/linux_install_14.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.ReadCDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.ReadCDR.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.ReadPDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.ReadPDF.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.ReadPFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.ReadPFM.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.ReadPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.ReadPNG.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.SeExpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.SeExpr.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Arc.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Roll.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Text.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Tile.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Wave.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgBloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgBloom.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgDenoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgDenoise.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgDilate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgDilate.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgErode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgErode.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgGuided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgGuided.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgHistEQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgHistEQ.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgNoise.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgPlasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgPlasma.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgSharpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgSharpen.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgSmooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgSmooth.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.AddPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.AddPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.ColorBars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.ColorBars.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Despill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Despill.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.DirBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.DirBlur.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.FrameHold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.FrameHold.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.GodRays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.GodRays.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.HSVToRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.HSVToRGB.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.HueKeyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.HueKeyer.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.IDistort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.IDistort.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MergeIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MergeIn.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MergeMax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MergeMax.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MergeMin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MergeMin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MergeOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MergeOut.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MergePlus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MergePlus.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Position.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Premult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Premult.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.RGBToHSV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.RGBToHSV.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Rectangle.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Reformat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Reformat.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Shadertoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Shadertoy.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.SlitScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.SlitScan.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Unpremult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Unpremult.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation1_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation1_unchecked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation2_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation2_unchecked.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation3_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation3_unchecked.png -------------------------------------------------------------------------------- /tools/MacPorts/lang/gcc5/files/mp-gcc5: -------------------------------------------------------------------------------- 1 | bin/gcc-mp-5 2 | bin/cpp-mp-5 3 | bin/c++-mp-5 4 | bin/g++-mp-5 5 | bin/gcj-mp-5 6 | bin/gcov-mp-5 7 | bin/gfortran-mp-5 8 | -------------------------------------------------------------------------------- /tools/utils/generateGLIncludes.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | CONFIG += console 3 | CONFIG -= app_bundle 4 | QT += core 5 | 6 | SOURCES += generateGLIncludes.cpp 7 | 8 | -------------------------------------------------------------------------------- /Documentation/source/devel/settingsPanelParamChangedCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/devel/settingsPanelParamChangedCB.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.ReadKrita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.ReadKrita.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.ReadMisc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.ReadMisc.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.ReadOIIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.ReadOIIO.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.RunScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.RunScript.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.WriteOIIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.WriteOIIO.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.WritePFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.WritePFM.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.WritePNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.WritePNG.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Edges.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Polar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Polar.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Sketch.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Swirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Swirl.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgBilateral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgBilateral.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgEqualize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgEqualize.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgLaplacian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgLaplacian.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.ColorWheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.ColorWheel.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.CropPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.CropPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.Deinterlace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.Deinterlace.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.FrameBlend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.FrameBlend.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.FrameRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.FrameRange.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.GammaPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.GammaPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.GradePlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.GradePlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.HueCorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.HueCorrect.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.KeyerPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.KeyerPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.LabToRGB709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.LabToRGB709.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MergePlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MergePlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MergeScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MergeScreen.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.NoOpPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.NoOpPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.RGB709ToLab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.RGB709ToLab.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.RGB709ToXYZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.RGB709ToXYZ.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.XYZToRGB709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.XYZToRGB709.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.timeOffset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.timeOffset.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/3D_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/3D_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/3D_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/3D_grouping_3.png -------------------------------------------------------------------------------- /libs/openMVG/openMVG/image/image_test/two_pixels_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/libs/openMVG/openMVG/image/image_test/two_pixels_color.jpg -------------------------------------------------------------------------------- /libs/openMVG/openMVG/image/image_test/two_pixels_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/libs/openMVG/openMVG/image/image_test/two_pixels_color.png -------------------------------------------------------------------------------- /libs/openMVG/openMVG/image/image_test/two_pixels_gray.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/libs/openMVG/openMVG/image/image_test/two_pixels_gray.pgm -------------------------------------------------------------------------------- /libs/openMVG/openMVG/multiview/rotation_averaging_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/libs/openMVG/openMVG/multiview/rotation_averaging_test.cpp -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.OCIODisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.OCIODisplay.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.OIIOResize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.OIIOResize.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.OpenRaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.OpenRaster.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.ReadFFmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.ReadFFmpeg.png -------------------------------------------------------------------------------- /Documentation/source/plugins/fr.inria.openfx.WriteFFmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/fr.inria.openfx.WriteFFmpeg.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Charcoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Charcoal.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Implode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Implode.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Modulate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Modulate.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Oilpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Oilpaint.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Polaroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Polaroid.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.ReadPSD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.ReadPSD.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.ReadSVG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.ReadSVG.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.fxarena.openfx.Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.fxarena.openfx.Texture.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgChromaBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgChromaBlur.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgErodeSmooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgErodeSmooth.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgExpression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgExpression.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.cimg.CImgSharpenShock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.cimg.CImgSharpenShock.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.ClipTestPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.ClipTestPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.ConstantPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.ConstantPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.DissolvePlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.DissolvePlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.HSVToolPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.HSVToolPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.LensDistortion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.LensDistortion.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MergeMultiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MergeMultiply.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.MultiplyPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.MultiplyPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.ShufflePlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.ShufflePlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.anaglyphPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.anaglyphPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.mixViewsPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.mixViewsPlugin.png -------------------------------------------------------------------------------- /Documentation/source/plugins/net.sf.openfx.switchPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/plugins/net.sf.openfx.switchPlugin.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set1/color_grouping_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set1/color_grouping_1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set1/deep_grouping_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set1/deep_grouping_1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set1/filter_grouping_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set1/filter_grouping_1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set1/image_grouping_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set1/image_grouping_1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set1/keyer_grouping_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set1/keyer_grouping_1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set1/misc_grouping_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set1/misc_grouping_1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set1/paint_grouping_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set1/paint_grouping_1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set1/time_grouping_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set1/time_grouping_1.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/color_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/color_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/deep_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/deep_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/filter_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/filter_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/image_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/image_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/keyer_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/keyer_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/merge_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/merge_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/misc_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/misc_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/other_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/other_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/paint_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/paint_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set2/time_grouping_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set2/time_grouping_2.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/3D_grouping_3_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/3D_grouping_3_512.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/color_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/color_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/deep_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/deep_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/filter_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/filter_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/image_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/image_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/keyer_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/keyer_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/merge_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/merge_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/misc_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/misc_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/other_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/other_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/paint_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/paint_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/GroupingIcons/Set3/time_grouping_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/GroupingIcons/Set3/time_grouping_3.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation1_checked_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation1_checked_hovered.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation2_checked_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation2_checked_hovered.png -------------------------------------------------------------------------------- /Gui/Resources/Images/checkbox_animation3_checked_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Gui/Resources/Images/checkbox_animation3_checked_hovered.png -------------------------------------------------------------------------------- /libs/Eigen3/Eigen/Dense: -------------------------------------------------------------------------------- 1 | #include "Core" 2 | #include "LU" 3 | #include "Cholesky" 4 | #include "QR" 5 | #include "SVD" 6 | #include "Geometry" 7 | #include "Eigenvalues" 8 | -------------------------------------------------------------------------------- /tools/MacPorts/aqua/qt4-mac/files/library_path/library_path_test.c: -------------------------------------------------------------------------------- 1 | #include2 |10 | -------------------------------------------------------------------------------- /libs/openMVG/openMVG/color_harmonization/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | UNIT_TEST( 3 | openMVG 4 | global_quantile_gain_offset_alignment 5 | "openMVG_image;${CLP_LIBRARIES};${COINUTILS_LIBRARY};${OSI_LIBRARY}") 6 | 7 | -------------------------------------------------------------------------------- /libs/openMVG/openMVG/sfm/pipelines/sequential/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | UNIT_TEST(openMVG sequential_SfM 3 | "openMVG_multiview_test_data;openMVG_features;openMVG_multiview;openMVG_sfm;openMVG_system;stlplus") 4 | 5 | -------------------------------------------------------------------------------- /Engine/NatronEngine/appsettings_wrapper.h: -------------------------------------------------------------------------------- 1 | #ifndef SBK_APPSETTINGS_H 2 | #define SBK_APPSETTINGS_H 3 | 4 | #includefoo
3 | 4 |5 |7 | 8 |bar
6 |foo
9 |
2 |9 | -------------------------------------------------------------------------------- /Documentation/source/guide/_images/AlternativeMatteExtraction/Ip_ChillSpill-FullComp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/AlternativeMatteExtraction/Ip_ChillSpill-FullComp.jpg -------------------------------------------------------------------------------- /Documentation/source/guide/_images/AlternativeMatteExtraction/Ip_ChillSpill-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/Natron/HEAD/Documentation/source/guide/_images/AlternativeMatteExtraction/Ip_ChillSpill-default.jpg -------------------------------------------------------------------------------- /Engine/NatronEngine/double2dtuple_wrapper.h: -------------------------------------------------------------------------------- 1 | #ifndef SBK_DOUBLE2DTUPLE_H 2 | #define SBK_DOUBLE2DTUPLE_H 3 | 4 | #includeA list within a blockquote:
3 |4 |
8 |- asterisk 1
5 |- asterisk 2
6 |- asterisk 3
7 |
Foo bar.
2 | 3 |Foo bar.
4 | -------------------------------------------------------------------------------- /Engine/NatronEngine/pyoverlayparamdesc_wrapper.h: -------------------------------------------------------------------------------- 1 | #ifndef SBK_PYOVERLAYPARAMDESC_H 2 | #define SBK_PYOVERLAYPARAMDESC_H 3 | 4 | #include<test a=" content of attribute ">
Fix for backticks within HTML tag: like this
4 | 5 |Here's how you put `backticks` in a code span.
Simple block on one line:
2 | 3 |And nested without indentation:
6 | 7 |This is strong and em.
2 | 3 |So is this word.
4 | 5 |This is strong and em.
6 | 7 |So is this word.
8 | -------------------------------------------------------------------------------- /Documentation/source/guide/compositing-projects-proxy.rst: -------------------------------------------------------------------------------- 1 | .. for help on writing/extending this file, see the reStructuredText cheatsheet 2 | http://github.com/ralsina/rst-cheatsheet/raw/master/rst-cheatsheet.pdf 3 | 4 | Proxy Mode 5 | ========== 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | -------------------------------------------------------------------------------- /Documentation/source/guide/tutorials-ffmpeg-audio.rst: -------------------------------------------------------------------------------- 1 | .. for help on writing/extending this file, see the reStructuredText cheatsheet 2 | http://github.com/ralsina/rst-cheatsheet/raw/master/rst-cheatsheet.pdf 3 | 4 | Muxing audio 5 | ============ 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | -------------------------------------------------------------------------------- /Documentation/source/guide/tutorials-ffmpeg-hevc.rst: -------------------------------------------------------------------------------- 1 | .. for help on writing/extending this file, see the reStructuredText cheatsheet 2 | http://github.com/ralsina/rst-cheatsheet/raw/master/rst-cheatsheet.pdf 3 | 4 | Encoding HEVC 5 | ============= 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | -------------------------------------------------------------------------------- /Documentation/source/guide/compositing-color.rst: -------------------------------------------------------------------------------- 1 | .. for help on writing/extending this file, see the reStructuredText cheatsheet 2 | http://github.com/ralsina/rst-cheatsheet/raw/master/rst-cheatsheet.pdf 3 | 4 | Working with color 5 | ================== 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | -------------------------------------------------------------------------------- /Documentation/source/guide/compositing-projects-caching.rst: -------------------------------------------------------------------------------- 1 | .. for help on writing/extending this file, see the reStructuredText cheatsheet 2 | http://github.com/ralsina/rst-cheatsheet/raw/master/rst-cheatsheet.pdf 3 | 4 | Image caching 5 | ============= 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | -------------------------------------------------------------------------------- /Documentation/source/guide/compositing-projects-setup.rst: -------------------------------------------------------------------------------- 1 | .. for help on writing/extending this file, see the reStructuredText cheatsheet 2 | http://github.com/ralsina/rst-cheatsheet/raw/master/rst-cheatsheet.pdf 3 | 4 | Project setup 5 | ============= 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | -------------------------------------------------------------------------------- /Documentation/source/guide/compositing-rotopaint.rst: -------------------------------------------------------------------------------- 1 | .. for help on writing/extending this file, see the reStructuredText cheatsheet 2 | http://github.com/ralsina/rst-cheatsheet/raw/master/rst-cheatsheet.pdf 3 | 4 | Using Rotopaint 5 | =============== 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | --------------------------------------------------------------------------------