├── resources ├── logo.png ├── 2cam.png ├── bug.png ├── burn.png ├── car.png ├── film.png ├── hand.png ├── hat.png ├── info.png ├── lock.png ├── minus.png ├── mouse.png ├── our │ ├── .directory │ ├── 3D.png │ ├── top.png │ ├── hyst.png │ ├── hyst_y.png │ ├── hyst_z.png │ └── chart_bar3d.png ├── pause.png ├── play.png ├── plus.png ├── robot.png ├── stop.png ├── str1.png ├── str2.png ├── str3.png ├── str4.png ├── user.png ├── accept.png ├── bug_add.png ├── connect.png ├── cvs_big.png ├── cvs_mid.png ├── diamond.png ├── filter.png ├── gear_in.png ├── install.png ├── measure.png ├── monitor.png ├── picture.png ├── record.png ├── refresh.png ├── remove.png ├── select.png ├── sharpen.png ├── sphere.png ├── stop_2.png ├── theater.png ├── tipper.png ├── tractor.png ├── unlock.png ├── up_alt.png ├── warning.png ├── webcam.png ├── wizard.png ├── zoom_in.png ├── .directory ├── 2cam-blend.png ├── 3d_glasses.png ├── Line Chart.png ├── advanced.png ├── back_alt.png ├── bitboard.png ├── brick_add.png ├── calculator.png ├── centroid.png ├── chart_bar.png ├── color_cap.png ├── controller.png ├── cvs16x16.png ├── cvs24x24.png ├── cvs32x32.png ├── disconnect.png ├── down_alt.png ├── draw_line.png ├── exchange.png ├── film_add.png ├── film_save.png ├── flag_start.png ├── flood_it.png ├── georectify.png ├── joystick.png ├── left-cam.png ├── lightbulb.png ├── lighthouse.png ├── lightning.png ├── page_copy.png ├── question.png ├── right-cam.png ├── script_add.png ├── script_go.png ├── select_reg.png ├── stop_sign.png ├── transmit.png ├── tree_list.png ├── vector_add.png ├── webcam_add.png ├── workspace.png ├── zoom_layer.png ├── zoom_out.png ├── 2cam-active.png ├── 2cam-blend-b.png ├── Picture Cast.png ├── arrow_switch.png ├── bullet_blue.png ├── camera_lens.png ├── canvas_size.png ├── cctv_camera.png ├── chart_curve.png ├── checkerboard.png ├── draw_eraser.png ├── draw_points.png ├── draw_polygon.png ├── fingerprint.png ├── forward_alt.png ├── inbox_upload.png ├── info_rhombus.png ├── joystick_add.png ├── layer_resize.png ├── layer_select.png ├── matchpoints.png ├── panel_resize.png ├── picture_save.png ├── radio_modern.png ├── screwdriver.png ├── script_save.png ├── user_robocop.png ├── vw_logo24x24.png ├── vw_logo32x32.png ├── vw_logo48x48.png ├── vw_logo96x96.png ├── zoom_extend.png ├── 3d_glasses_rc.png ├── 3d_glasses_rg.png ├── bullet_orange.png ├── colors │ ├── contrast.png │ ├── color_blue.png │ ├── color_gray.png │ ├── color_red.png │ ├── color_green.png │ └── color_wheel.png ├── controller_add.png ├── hand_cursor_1.png ├── inbox_download.png ├── joystick_error.png ├── layer_histogram.png ├── picture_frame.png ├── report_images.png ├── script_delete.png ├── select_by_color.png ├── server_connect.png ├── setting_tools.png ├── table_lightning.png ├── transmit_blue.png ├── user_silhouette.png ├── vector_delete.png ├── viziware_grey.png ├── Graphite Desktop.png ├── color_adjustment.png ├── controller_error.png ├── draw_calligraphic.png ├── inbox_upload_add.png ├── merge_two_tables.png ├── price_comparison.png ├── script_lightning.png ├── transform_rotate.png ├── zoom_actual_equal.png ├── layer_resize_actual.png ├── panel_resize_actual.png ├── radioactivity_drum.png ├── transform_rotate_180.png ├── transform_rotate_270.png ├── transform_rotate_90.png ├── application_view_list.png ├── arrow_rotate_clockwise.png ├── folder-grey-open-24x24.png ├── shape_rotate_clockwise.png ├── arrow_rotate_anticlockwise.png ├── shape_rotate_clockwise_exec.png └── shaders │ ├── green.fsh │ ├── default_fast.fsh │ ├── _trivial.vsh │ ├── green.vsh │ ├── obj_textured.vsh │ ├── obj_textured.fsh │ ├── _trivial.fsh │ └── default_fast.vsh ├── core ├── geometry │ ├── axisAlignedBox.cpp │ ├── plane.cpp │ ├── triangle.cpp │ ├── planeFrame.cpp │ ├── renderer │ │ └── attributedTriangleSpanIterator.cpp │ ├── gentryState.cpp │ ├── raytrace │ │ ├── raytraceableNodeWrapper.cpp │ │ └── sdfRenderable.h │ ├── orientedBox.cpp │ ├── polygonPointIterator.cpp │ ├── mesh │ │ ├── meshClicker.cpp │ │ └── meshFilter.h │ ├── ellipticalApproximation.cpp │ └── gentryState.h ├── buffers │ ├── float │ │ ├── dpImage.cpp │ │ └── dpImage.h │ ├── rgb24 │ │ ├── lineSpan.cpp │ │ ├── bezierRasterizer.cpp │ │ ├── wuRasterizer.cpp │ │ ├── bresenhamRasterizer.cpp │ │ ├── abstractPainter.cpp │ │ └── hersheyVectorFont.h │ ├── deformMap.cpp │ ├── booleanBuffer.cpp │ ├── kernels │ │ ├── logicKernels.cpp │ │ ├── threshold.cpp │ │ └── laplace.cpp │ ├── g12Buffer3d.cpp │ ├── flow │ │ ├── element6D.cpp │ │ └── depthBuffer.cpp │ ├── memory │ │ └── memoryBlock.cpp │ ├── abstractBuffer.cpp │ ├── disparityBuffer.cpp │ ├── mipmapPyramid.cpp │ ├── voxels │ │ ├── slicedSpace.cpp │ │ └── slicedSpace.h │ ├── converters │ │ └── colorConverters.cpp │ └── commonMappers.cpp ├── alignment │ └── pointObservation.cpp ├── features2d │ ├── CMakeLists.txt │ └── features2d.pri ├── cameracalibration │ ├── cameraConstraints.cpp │ └── projection │ │ ├── equisolidAngleProjection.cpp │ │ ├── omnidirectionalProjection.cpp │ │ ├── equidistantProjection.cpp │ │ ├── projectionModels.cpp │ │ └── stereographicProjection.cpp ├── meta │ ├── astOptimize.cpp │ ├── packedDerivative.cpp │ ├── astOptimize.h │ ├── floatJIT.cpp │ ├── floatJIT.h │ ├── meta.pri │ └── CMakeLists.txt ├── camerafixture │ ├── cameraPrototype.cpp │ ├── fixtureScenePart.cpp │ └── wildcardablePointerPair.cpp ├── math │ ├── matrix │ │ ├── covMatrix22.cpp │ │ └── diagonalMatrix.cpp │ ├── generic │ │ └── genericMath.cpp │ ├── helperFunctions.cpp │ ├── quaternion.cpp │ ├── projectiveTransform.cpp │ ├── vector │ │ └── vector.h │ ├── fixed │ │ └── fixedPoint24p8.cpp │ ├── puzzleBlock.h │ └── tangentSpace.cpp ├── tinyxml2 │ ├── tinyxml2.pri │ └── CMakeLists.txt ├── tbbwrapper │ ├── CMakeLists.txt │ └── tbbwrapper.pri ├── delaunay │ ├── delaunay.pri │ └── CMakeLists.txt ├── function │ ├── function.pri │ └── CMakeLists.txt ├── kltflow │ ├── kltflow.pri │ └── CMakeLists.txt ├── patterndetection │ └── patterndetection.pri ├── assignment │ ├── assignment.pri │ └── CMakeLists.txt ├── edgedetector │ ├── edgedetector.pri │ ├── CMakeLists.txt │ └── cannyDetector.h ├── iterative │ ├── iterative.pri │ └── CMakeLists.txt ├── kalman │ ├── uduDecomposed.cpp │ ├── cooSparseMatrix.cpp │ ├── upperUnitaryMatrix.cpp │ └── kalman.pri ├── polynomial │ ├── polynomial.pri │ └── CMakeLists.txt ├── stats │ ├── stats.pri │ └── CMakeLists.txt ├── framesources │ ├── decoders │ │ └── mjpegDecoder.h │ └── dummyVideoEncoderInterface.cpp ├── reflection │ ├── stringPrinterVisitor.cpp │ └── stringPrinterVisitor.h ├── clustering3d │ ├── swarmPoint.cpp │ ├── clustering3d.pri │ ├── CMakeLists.txt │ └── cloud.h ├── filesystem │ ├── filesystem.pri │ └── CMakeLists.txt ├── stereointerface │ ├── stereointerface.pri │ ├── CMakeLists.txt │ └── processor6D.cpp ├── segmentation │ ├── segmentation.pri │ ├── CMakeLists.txt │ └── segmentator.cpp ├── xml │ ├── generated │ │ └── CMakeLists.txt │ └── filterBlock.xml ├── joystick │ ├── joystick.pri │ └── CMakeLists.txt ├── utils │ ├── propertyList.cpp │ └── visitors │ │ └── basePathVisitor.cpp ├── rectification │ └── essentialMatrix.cpp ├── cammodel │ ├── energyBuffer.cpp │ ├── sphericalCorrectionLUT.cpp │ ├── imagerProperties.cpp │ ├── imagerProperties.h │ ├── cammodel.pri │ └── CMakeLists.txt ├── fileformats │ ├── bufferLoader.cpp │ └── metamap.h ├── meanshift │ ├── meanshift.pri │ └── CMakeLists.txt ├── boosting │ ├── adaBoost.cpp │ ├── boosting.pri │ ├── CMakeLists.txt │ └── cascadeClassifier.cpp ├── filters │ ├── newstyle │ │ └── newStyleBlock.cpp │ ├── legacy │ │ ├── txtFilter.cpp │ │ └── abstractFilter.cpp │ ├── filters.pri │ └── CMakeLists.txt ├── clegacy │ ├── math │ │ ├── math.pri │ │ └── linlse.h │ └── cornermarker.h ├── automotive │ ├── automotive.pri │ ├── CMakeLists.txt │ └── flowVectorInformation.cpp └── serializer │ └── serializable.cpp ├── test ├── adoptcolor │ └── main_adoptcolor.h ├── serialize1 │ └── main_serialize1.h ├── example_scene │ ├── main_example_scene.h │ └── example_scene.pro ├── jitplayground │ └── main_jitplayground.h ├── httpserver │ ├── server │ │ └── Pages │ │ │ └── index.template.html │ └── pages │ │ ├── html │ │ ├── Body.html │ │ ├── Script.html │ │ └── Header.html │ │ └── img │ │ ├── jojo0.jpg │ │ ├── jojo1.jpg │ │ ├── jojo2.jpg │ │ └── jojo3.jpg ├── softrender │ ├── render.sh │ └── floatHorizon.h ├── stereointerface │ └── CMakeLists.txt ├── vodometry │ ├── rtestimator.h │ ├── convertors.h │ └── ertfinder.h ├── widgets_test │ └── testNativeWidget.h ├── stabilization │ ├── opticalflowanalysis.h │ └── frameprocessor.h ├── grab24_qt │ ├── main_grab24_qt.h │ └── grab24_qt.pro ├── gcodeplayground │ └── README.md ├── grab24 │ └── CMakeLists.txt ├── qtScriptConsole │ └── qtScriptConsole.pro ├── test_3points │ ├── test_3points.pro │ └── errorEstimatorBlock.h ├── flowtest │ └── CMakeLists.txt ├── opencv_profile │ └── opencv_profile.pro └── focus_stack │ └── fsAlgorithm.h ├── applications ├── drone │ ├── drone-app │ │ └── server │ │ │ └── Pages │ │ │ └── index.template.html │ ├── drone-ui │ │ ├── drone.qrc │ │ ├── physicsAboutWidget.cpp │ │ ├── physicsAboutWidget.h │ │ ├── joystick │ │ │ └── mixerChannelOperationWidget.h │ │ ├── drone-ui.pri │ │ └── radio │ │ │ └── radioControlWidget.h │ ├── drone-core │ │ ├── comcontroller.cpp │ │ ├── xml │ │ │ └── worldParameters.xml │ │ ├── comcontroller.h │ │ ├── clientSender.h │ │ ├── joystick │ │ │ ├── joystickReader.cpp │ │ │ └── joystickReader.h │ │ ├── opencvUtils │ │ │ └── opencvTransformations.h │ │ ├── controlRecord.h │ │ └── calibration │ │ │ └── calibration.h │ └── CMakeLists.txt ├── vinylCutter │ ├── resources │ │ └── background.png │ └── main_vinylCutter.cpp ├── base │ ├── baseOutputData.cpp │ ├── layers │ │ └── geometryResultLayer.cpp │ ├── baseOutputData.h │ └── baseApplicationExample.pro ├── testbed │ ├── localHistogram.cpp │ └── resources │ │ ├── color_management.png │ │ ├── color_picker_alternative.png │ │ └── testbed.qrc ├── robodetect │ ├── localHistogram.cpp │ └── resources │ │ ├── color_management.png │ │ ├── color_picker_alternative.png │ │ ├── testbed.qrc │ │ └── robodetect.qrc ├── apriltag_test │ ├── apriltag_test.h │ └── CMakeLists.txt ├── cloudview │ └── CMakeLists.txt └── laserscan │ └── CMakeLists.txt ├── googletest ├── googletest-prefix │ ├── src │ │ └── googletest-stamp │ │ │ ├── googletest-build │ │ │ ├── googletest-done │ │ │ ├── googletest-install │ │ │ ├── googletest-mkdir │ │ │ ├── googletest-patch │ │ │ ├── googletest-test │ │ │ ├── googletest-configure │ │ │ ├── googletest-download │ │ │ ├── googletest-gitinfo.txt │ │ │ └── googletest-gitclone-lastrun.txt │ └── tmp │ │ ├── googletest-cfgcmd.txt │ │ └── googletest-cfgcmd.txt.in └── CMakeLists.txt ├── utils ├── corestructs │ ├── lockableObject.cpp │ ├── flowFabricControlWidget.cpp │ ├── zoomablearea.cpp │ ├── parametersControlWidgetBase.cpp │ ├── universalVisitor.cpp │ ├── zoomablearea.h │ ├── universalVisitor.h │ ├── histogramwidget.ui │ └── saveFlowSettings.h ├── filters │ ├── graph │ │ ├── compoundBlockPresentation.cpp │ │ ├── graphInterface.cpp │ │ ├── inputBlockPresentation.cpp │ │ ├── outputBlockPresentation.cpp │ │ ├── txtPinPresentation.cpp │ │ ├── g12PinPresentation.cpp │ │ ├── inputBlockPresentation.h │ │ └── outputBlockPresentation.h │ └── legacy │ │ ├── affinefilter.cpp │ │ └── affinefilter.h ├── statistics │ ├── userPoll.cpp │ ├── contentStatistics.cpp │ └── sourcelist.cmake ├── serializer │ ├── widgetQtIterator.cpp │ ├── sourcelist.cmake │ ├── serializer.h │ ├── serializedWidget.cpp │ └── serializedWidget.h ├── uis │ ├── aboutDialog.cpp │ ├── textLabelWidget.cpp │ ├── aboutDialog.h │ ├── cloudview │ │ ├── scene3dTreeView.h │ │ ├── scene3dTreeView.cpp │ │ └── sourcelist.cmake │ ├── aboutPropsTableWidget.h │ ├── paintImageWidget.ui │ ├── osdBaseWidget.h │ └── textLabelWidget.h ├── opengl │ └── sourcelist.cmake ├── fileformats │ └── sourcelist.cmake ├── flowcolorers │ ├── sourcelist.cmake │ ├── flowColorer.h │ └── stereoColorer.h ├── memoryuse │ ├── sourcelist.cmake │ ├── macMemoryUsageCalculator.cpp │ ├── macMemoryUsageCalculator.h │ ├── linuxMemoryUsageCalculator.h │ ├── windowsMemoryUsageCalculator.h │ └── memoryUsageCalculator.cpp ├── widgets │ ├── shift3dWidget.cpp │ ├── shift3dWidget.h │ ├── parameterEditorWidget.cpp │ └── sourcelist.cmake ├── camcalc │ ├── sourcelist.cmake │ ├── colorTimer.cpp │ └── colorTimer.h ├── rectifier │ └── sourcelist.cmake ├── scripting │ └── sourcelist.cmake ├── distortioncorrector │ └── sourcelist.cmake ├── timeliner.cpp ├── visitors │ ├── sourcelist.cmake │ └── baseXMLVisitor.h ├── viGLAreaWidget.ui ├── viAreaWidget.ui ├── framesources │ └── opencv │ │ └── openCVHelper.h ├── 3d │ └── sourcelist.cmake └── matrixwidget.h ├── wrappers ├── httpserver │ ├── libEventServer.cpp │ └── libs │ │ ├── imageGenerator.h │ │ ├── statsGenerator.h │ │ └── statsGenerator.cpp ├── directShow │ ├── test.cpp │ ├── lib │ │ ├── capdll.dll │ │ └── capdll_vc10.lib │ └── lib64 │ │ ├── capdll.dll │ │ ├── capdll.lib │ │ └── capdll_vc10.lib ├── v4l2 │ ├── v4l2Libs.pri │ └── sourcelist.cmake ├── joystick │ ├── joystick.pri │ └── sourcelist.cmake ├── opencv │ ├── featureDetectorCV.cpp │ └── openCvKeyPointsWrapper.h ├── rapidjson │ └── rapidjsonLibs.pri ├── libfftw │ ├── sourcelist.cmake │ └── libpng.pri ├── atv │ └── filter.h ├── gts │ ├── gtswrapper.h │ └── gtswrapper.pri ├── jsonmodern │ └── sourcelist.cmake ├── libgif │ └── sourcelist.cmake ├── libpng │ ├── sourcelist.cmake │ └── libpng.pri ├── libjpeg │ └── sourcelist.cmake ├── cblasLapack │ └── cblasLapackeWrapper.h └── cgal │ └── libcgal.pri ├── detector-debug.png ├── photo_2019-09-29_23-11-23.jpg ├── siblings ├── clone_disflow.sh ├── clone_openblas.sh └── clone_gtest.sh ├── .gitmodules ├── out.json ├── tools ├── generator │ ├── regen-all.sh │ ├── xml │ │ ├── baseStub.xml │ │ ├── egomotion.xml │ │ ├── utils.xml │ │ └── recorder.xml │ ├── templateGenerator.h │ ├── templateGenerator.cpp │ ├── selftest.sh │ ├── regen-documentation.sh │ └── documentationGenerator.h └── CMakeLists.txt ├── test-core ├── snooker │ ├── snookerSegmentator.cpp │ ├── reflectionSegmentator.cpp │ └── snooker.pro ├── ultrasound │ ├── model.h │ └── imgreader.h ├── cppunit_test │ ├── cppunit_test.pro │ └── MatcherTest.h ├── sphericdist │ └── kalman.pg ├── eigen │ └── main_test_eigen_integration.cpp ├── linear │ └── linear.pro ├── levenberg │ └── cam.gplot ├── convert │ └── convert.pro ├── fastkernel_profile │ └── fastkernel_profile.pro ├── ransac │ └── main_test_ransac.cpp ├── json │ └── main_test_json.cpp ├── matrixoperations │ └── main_test_matrixoperations.cpp ├── automotive │ └── drawFlow.gplot ├── -perf │ └── test-core-perf.pro ├── stateMachineTest │ └── stateMachineTest.pro └── convexpolygon │ └── convexDebug.h ├── cvs-mainpage.h ├── .gitignore ├── git-version.pri └── cmake └── googletest-download.cmake /resources/logo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/geometry/axisAlignedBox.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/adoptcolor/main_adoptcolor.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/serialize1/main_serialize1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/example_scene/main_example_scene.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/jitplayground/main_jitplayground.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/geometry/plane.cpp: -------------------------------------------------------------------------------- 1 | #include "plane.h" 2 | -------------------------------------------------------------------------------- /test/httpserver/server/Pages/index.template.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/geometry/triangle.cpp: -------------------------------------------------------------------------------- 1 | #include "triangle.h" 2 | 3 | -------------------------------------------------------------------------------- /applications/drone/drone-app/server/Pages/index.template.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/buffers/float/dpImage.cpp: -------------------------------------------------------------------------------- 1 | #include "dpImage.h" 2 | 3 | -------------------------------------------------------------------------------- /core/geometry/planeFrame.cpp: -------------------------------------------------------------------------------- 1 | #include "planeFrame.h" 2 | 3 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-done: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-mkdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/tmp/googletest-cfgcmd.txt: -------------------------------------------------------------------------------- 1 | cmd='' 2 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-configure: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-download: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/tmp/googletest-cfgcmd.txt.in: -------------------------------------------------------------------------------- 1 | cmd='@cmd@' 2 | -------------------------------------------------------------------------------- /utils/corestructs/lockableObject.cpp: -------------------------------------------------------------------------------- 1 | #include "lockableObject.h" 2 | 3 | -------------------------------------------------------------------------------- /wrappers/httpserver/libEventServer.cpp: -------------------------------------------------------------------------------- 1 | #include "libEventServer.h" 2 | -------------------------------------------------------------------------------- /test/httpserver/pages/html/Body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /core/buffers/rgb24/lineSpan.cpp: -------------------------------------------------------------------------------- 1 | #include "core/buffers/rgb24/lineSpan.h" 2 | 3 | -------------------------------------------------------------------------------- /test/httpserver/pages/html/Script.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /core/alignment/pointObservation.cpp: -------------------------------------------------------------------------------- 1 | #include "core/alignment/pointObservation.h" 2 | 3 | -------------------------------------------------------------------------------- /detector-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/detector-debug.png -------------------------------------------------------------------------------- /resources/2cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/2cam.png -------------------------------------------------------------------------------- /resources/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/bug.png -------------------------------------------------------------------------------- /resources/burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/burn.png -------------------------------------------------------------------------------- /resources/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/car.png -------------------------------------------------------------------------------- /resources/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/film.png -------------------------------------------------------------------------------- /resources/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/hand.png -------------------------------------------------------------------------------- /resources/hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/hat.png -------------------------------------------------------------------------------- /resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/info.png -------------------------------------------------------------------------------- /resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/lock.png -------------------------------------------------------------------------------- /resources/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/minus.png -------------------------------------------------------------------------------- /resources/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/mouse.png -------------------------------------------------------------------------------- /resources/our/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2013,7,12,17,22,21 4 | -------------------------------------------------------------------------------- /resources/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/pause.png -------------------------------------------------------------------------------- /resources/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/play.png -------------------------------------------------------------------------------- /resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/plus.png -------------------------------------------------------------------------------- /resources/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/robot.png -------------------------------------------------------------------------------- /resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/stop.png -------------------------------------------------------------------------------- /resources/str1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/str1.png -------------------------------------------------------------------------------- /resources/str2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/str2.png -------------------------------------------------------------------------------- /resources/str3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/str3.png -------------------------------------------------------------------------------- /resources/str4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/str4.png -------------------------------------------------------------------------------- /resources/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/user.png -------------------------------------------------------------------------------- /applications/drone/drone-ui/drone.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /core/buffers/rgb24/bezierRasterizer.cpp: -------------------------------------------------------------------------------- 1 | #include "core/buffers/rgb24/bezierRasterizer.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /core/features2d/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | features2d/*.h 3 | 4 | 5 | 6 | features2d/*.cpp 7 | 8 | -------------------------------------------------------------------------------- /resources/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/accept.png -------------------------------------------------------------------------------- /resources/bug_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/bug_add.png -------------------------------------------------------------------------------- /resources/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/connect.png -------------------------------------------------------------------------------- /resources/cvs_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/cvs_big.png -------------------------------------------------------------------------------- /resources/cvs_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/cvs_mid.png -------------------------------------------------------------------------------- /resources/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/diamond.png -------------------------------------------------------------------------------- /resources/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/filter.png -------------------------------------------------------------------------------- /resources/gear_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/gear_in.png -------------------------------------------------------------------------------- /resources/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/install.png -------------------------------------------------------------------------------- /resources/measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/measure.png -------------------------------------------------------------------------------- /resources/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/monitor.png -------------------------------------------------------------------------------- /resources/our/3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/our/3D.png -------------------------------------------------------------------------------- /resources/our/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/our/top.png -------------------------------------------------------------------------------- /resources/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/picture.png -------------------------------------------------------------------------------- /resources/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/record.png -------------------------------------------------------------------------------- /resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/refresh.png -------------------------------------------------------------------------------- /resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/remove.png -------------------------------------------------------------------------------- /resources/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/select.png -------------------------------------------------------------------------------- /resources/sharpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/sharpen.png -------------------------------------------------------------------------------- /resources/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/sphere.png -------------------------------------------------------------------------------- /resources/stop_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/stop_2.png -------------------------------------------------------------------------------- /resources/theater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/theater.png -------------------------------------------------------------------------------- /resources/tipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/tipper.png -------------------------------------------------------------------------------- /resources/tractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/tractor.png -------------------------------------------------------------------------------- /resources/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/unlock.png -------------------------------------------------------------------------------- /resources/up_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/up_alt.png -------------------------------------------------------------------------------- /resources/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/warning.png -------------------------------------------------------------------------------- /resources/webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/webcam.png -------------------------------------------------------------------------------- /resources/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/wizard.png -------------------------------------------------------------------------------- /resources/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/zoom_in.png -------------------------------------------------------------------------------- /utils/filters/graph/compoundBlockPresentation.cpp: -------------------------------------------------------------------------------- 1 | #include "compoundBlockPresentation.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /applications/drone/drone-core/comcontroller.cpp: -------------------------------------------------------------------------------- 1 | //Will be removed 2 | 3 | #include "comcontroller.h" 4 | -------------------------------------------------------------------------------- /core/cameracalibration/cameraConstraints.cpp: -------------------------------------------------------------------------------- 1 | #include "core/cameracalibration/cameraConstraints.h" 2 | 3 | -------------------------------------------------------------------------------- /resources/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2019,3,10,12,17,21 4 | Version=4 5 | -------------------------------------------------------------------------------- /resources/2cam-blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/2cam-blend.png -------------------------------------------------------------------------------- /resources/3d_glasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/3d_glasses.png -------------------------------------------------------------------------------- /resources/Line Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/Line Chart.png -------------------------------------------------------------------------------- /resources/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/advanced.png -------------------------------------------------------------------------------- /resources/back_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/back_alt.png -------------------------------------------------------------------------------- /resources/bitboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/bitboard.png -------------------------------------------------------------------------------- /resources/brick_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/brick_add.png -------------------------------------------------------------------------------- /resources/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/calculator.png -------------------------------------------------------------------------------- /resources/centroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/centroid.png -------------------------------------------------------------------------------- /resources/chart_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/chart_bar.png -------------------------------------------------------------------------------- /resources/color_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/color_cap.png -------------------------------------------------------------------------------- /resources/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/controller.png -------------------------------------------------------------------------------- /resources/cvs16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/cvs16x16.png -------------------------------------------------------------------------------- /resources/cvs24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/cvs24x24.png -------------------------------------------------------------------------------- /resources/cvs32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/cvs32x32.png -------------------------------------------------------------------------------- /resources/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/disconnect.png -------------------------------------------------------------------------------- /resources/down_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/down_alt.png -------------------------------------------------------------------------------- /resources/draw_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/draw_line.png -------------------------------------------------------------------------------- /resources/exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/exchange.png -------------------------------------------------------------------------------- /resources/film_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/film_add.png -------------------------------------------------------------------------------- /resources/film_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/film_save.png -------------------------------------------------------------------------------- /resources/flag_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/flag_start.png -------------------------------------------------------------------------------- /resources/flood_it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/flood_it.png -------------------------------------------------------------------------------- /resources/georectify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/georectify.png -------------------------------------------------------------------------------- /resources/joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/joystick.png -------------------------------------------------------------------------------- /resources/left-cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/left-cam.png -------------------------------------------------------------------------------- /resources/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/lightbulb.png -------------------------------------------------------------------------------- /resources/lighthouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/lighthouse.png -------------------------------------------------------------------------------- /resources/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/lightning.png -------------------------------------------------------------------------------- /resources/our/hyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/our/hyst.png -------------------------------------------------------------------------------- /resources/our/hyst_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/our/hyst_y.png -------------------------------------------------------------------------------- /resources/our/hyst_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/our/hyst_z.png -------------------------------------------------------------------------------- /resources/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/page_copy.png -------------------------------------------------------------------------------- /resources/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/question.png -------------------------------------------------------------------------------- /resources/right-cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/right-cam.png -------------------------------------------------------------------------------- /resources/script_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/script_add.png -------------------------------------------------------------------------------- /resources/script_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/script_go.png -------------------------------------------------------------------------------- /resources/select_reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/select_reg.png -------------------------------------------------------------------------------- /resources/stop_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/stop_sign.png -------------------------------------------------------------------------------- /resources/transmit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/transmit.png -------------------------------------------------------------------------------- /resources/tree_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/tree_list.png -------------------------------------------------------------------------------- /resources/vector_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/vector_add.png -------------------------------------------------------------------------------- /resources/webcam_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/webcam_add.png -------------------------------------------------------------------------------- /resources/workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/workspace.png -------------------------------------------------------------------------------- /resources/zoom_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/zoom_layer.png -------------------------------------------------------------------------------- /resources/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/zoom_out.png -------------------------------------------------------------------------------- /core/cameracalibration/projection/equisolidAngleProjection.cpp: -------------------------------------------------------------------------------- 1 | #include "equisolidAngleProjection.h" 2 | 3 | -------------------------------------------------------------------------------- /core/cameracalibration/projection/omnidirectionalProjection.cpp: -------------------------------------------------------------------------------- 1 | #include "omnidirectionalProjection.h" 2 | 3 | -------------------------------------------------------------------------------- /core/geometry/renderer/attributedTriangleSpanIterator.cpp: -------------------------------------------------------------------------------- 1 | #include "attributedTriangleSpanIterator.h" 2 | 3 | -------------------------------------------------------------------------------- /resources/2cam-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/2cam-active.png -------------------------------------------------------------------------------- /resources/2cam-blend-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/2cam-blend-b.png -------------------------------------------------------------------------------- /resources/Picture Cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/Picture Cast.png -------------------------------------------------------------------------------- /resources/arrow_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/arrow_switch.png -------------------------------------------------------------------------------- /resources/bullet_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/bullet_blue.png -------------------------------------------------------------------------------- /resources/camera_lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/camera_lens.png -------------------------------------------------------------------------------- /resources/canvas_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/canvas_size.png -------------------------------------------------------------------------------- /resources/cctv_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/cctv_camera.png -------------------------------------------------------------------------------- /resources/chart_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/chart_curve.png -------------------------------------------------------------------------------- /resources/checkerboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/checkerboard.png -------------------------------------------------------------------------------- /resources/draw_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/draw_eraser.png -------------------------------------------------------------------------------- /resources/draw_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/draw_points.png -------------------------------------------------------------------------------- /resources/draw_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/draw_polygon.png -------------------------------------------------------------------------------- /resources/fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/fingerprint.png -------------------------------------------------------------------------------- /resources/forward_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/forward_alt.png -------------------------------------------------------------------------------- /resources/inbox_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/inbox_upload.png -------------------------------------------------------------------------------- /resources/info_rhombus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/info_rhombus.png -------------------------------------------------------------------------------- /resources/joystick_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/joystick_add.png -------------------------------------------------------------------------------- /resources/layer_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/layer_resize.png -------------------------------------------------------------------------------- /resources/layer_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/layer_select.png -------------------------------------------------------------------------------- /resources/matchpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/matchpoints.png -------------------------------------------------------------------------------- /resources/panel_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/panel_resize.png -------------------------------------------------------------------------------- /resources/picture_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/picture_save.png -------------------------------------------------------------------------------- /resources/radio_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/radio_modern.png -------------------------------------------------------------------------------- /resources/screwdriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/screwdriver.png -------------------------------------------------------------------------------- /resources/script_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/script_save.png -------------------------------------------------------------------------------- /resources/user_robocop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/user_robocop.png -------------------------------------------------------------------------------- /resources/vw_logo24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/vw_logo24x24.png -------------------------------------------------------------------------------- /resources/vw_logo32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/vw_logo32x32.png -------------------------------------------------------------------------------- /resources/vw_logo48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/vw_logo48x48.png -------------------------------------------------------------------------------- /resources/vw_logo96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/vw_logo96x96.png -------------------------------------------------------------------------------- /resources/zoom_extend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/zoom_extend.png -------------------------------------------------------------------------------- /photo_2019-09-29_23-11-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/photo_2019-09-29_23-11-23.jpg -------------------------------------------------------------------------------- /resources/3d_glasses_rc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/3d_glasses_rc.png -------------------------------------------------------------------------------- /resources/3d_glasses_rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/3d_glasses_rg.png -------------------------------------------------------------------------------- /resources/bullet_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/bullet_orange.png -------------------------------------------------------------------------------- /resources/colors/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/colors/contrast.png -------------------------------------------------------------------------------- /resources/controller_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/controller_add.png -------------------------------------------------------------------------------- /resources/hand_cursor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/hand_cursor_1.png -------------------------------------------------------------------------------- /resources/inbox_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/inbox_download.png -------------------------------------------------------------------------------- /resources/joystick_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/joystick_error.png -------------------------------------------------------------------------------- /resources/layer_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/layer_histogram.png -------------------------------------------------------------------------------- /resources/our/chart_bar3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/our/chart_bar3d.png -------------------------------------------------------------------------------- /resources/picture_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/picture_frame.png -------------------------------------------------------------------------------- /resources/report_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/report_images.png -------------------------------------------------------------------------------- /resources/script_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/script_delete.png -------------------------------------------------------------------------------- /resources/select_by_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/select_by_color.png -------------------------------------------------------------------------------- /resources/server_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/server_connect.png -------------------------------------------------------------------------------- /resources/setting_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/setting_tools.png -------------------------------------------------------------------------------- /resources/table_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/table_lightning.png -------------------------------------------------------------------------------- /resources/transmit_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/transmit_blue.png -------------------------------------------------------------------------------- /resources/user_silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/user_silhouette.png -------------------------------------------------------------------------------- /resources/vector_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/vector_delete.png -------------------------------------------------------------------------------- /resources/viziware_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/viziware_grey.png -------------------------------------------------------------------------------- /siblings/clone_disflow.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git clone https://github.com/tikroeger/OF_DIS.git OF_DIS 4 | 5 | 6 | -------------------------------------------------------------------------------- /wrappers/directShow/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/wrappers/directShow/test.cpp -------------------------------------------------------------------------------- /core/meta/astOptimize.cpp: -------------------------------------------------------------------------------- 1 | #include "core/meta/astOptimize.h" 2 | 3 | AstOptimize::AstOptimize() 4 | { 5 | 6 | } 7 | 8 | -------------------------------------------------------------------------------- /resources/Graphite Desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/Graphite Desktop.png -------------------------------------------------------------------------------- /resources/color_adjustment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/color_adjustment.png -------------------------------------------------------------------------------- /resources/colors/color_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/colors/color_blue.png -------------------------------------------------------------------------------- /resources/colors/color_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/colors/color_gray.png -------------------------------------------------------------------------------- /resources/colors/color_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/colors/color_red.png -------------------------------------------------------------------------------- /resources/controller_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/controller_error.png -------------------------------------------------------------------------------- /resources/draw_calligraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/draw_calligraphic.png -------------------------------------------------------------------------------- /resources/inbox_upload_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/inbox_upload_add.png -------------------------------------------------------------------------------- /resources/merge_two_tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/merge_two_tables.png -------------------------------------------------------------------------------- /resources/price_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/price_comparison.png -------------------------------------------------------------------------------- /resources/script_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/script_lightning.png -------------------------------------------------------------------------------- /resources/transform_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/transform_rotate.png -------------------------------------------------------------------------------- /resources/zoom_actual_equal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/zoom_actual_equal.png -------------------------------------------------------------------------------- /siblings/clone_openblas.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git clone https://github.com/xianyi/OpenBLAS.git OpenBLAS 4 | 5 | 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "siblings/OF_DIS"] 2 | path = siblings/OF_DIS 3 | url = https://github.com/tikroeger/OF_DIS.git 4 | -------------------------------------------------------------------------------- /core/buffers/rgb24/wuRasterizer.cpp: -------------------------------------------------------------------------------- 1 | #include "core/buffers/rgb24/wuRasterizer.h" 2 | 3 | WuRasterizer::WuRasterizer() { } 4 | -------------------------------------------------------------------------------- /core/geometry/gentryState.cpp: -------------------------------------------------------------------------------- 1 | #include "core/geometry/gentryState.h" 2 | 3 | GentryState::GentryState() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /resources/colors/color_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/colors/color_green.png -------------------------------------------------------------------------------- /resources/colors/color_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/colors/color_wheel.png -------------------------------------------------------------------------------- /resources/layer_resize_actual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/layer_resize_actual.png -------------------------------------------------------------------------------- /resources/panel_resize_actual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/panel_resize_actual.png -------------------------------------------------------------------------------- /resources/radioactivity_drum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/radioactivity_drum.png -------------------------------------------------------------------------------- /resources/transform_rotate_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/transform_rotate_180.png -------------------------------------------------------------------------------- /resources/transform_rotate_270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/transform_rotate_270.png -------------------------------------------------------------------------------- /resources/transform_rotate_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/transform_rotate_90.png -------------------------------------------------------------------------------- /utils/filters/graph/graphInterface.cpp: -------------------------------------------------------------------------------- 1 | #include "graphInterface.h" 2 | 3 | GraphInterface::GraphInterface() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /wrappers/directShow/lib/capdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/wrappers/directShow/lib/capdll.dll -------------------------------------------------------------------------------- /core/buffers/deformMap.cpp: -------------------------------------------------------------------------------- 1 | #include "core/buffers/deformMap.h" 2 | 3 | namespace corecvs { 4 | 5 | 6 | } // namespace corecvs 7 | -------------------------------------------------------------------------------- /core/camerafixture/cameraPrototype.cpp: -------------------------------------------------------------------------------- 1 | #include "core/camerafixture/cameraPrototype.h" 2 | 3 | namespace corecvs { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /core/geometry/raytrace/raytraceableNodeWrapper.cpp: -------------------------------------------------------------------------------- 1 | #include "raytraceableNodeWrapper.h" 2 | 3 | namespace corecvs { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /core/math/matrix/covMatrix22.cpp: -------------------------------------------------------------------------------- 1 | #include "covMatrix22.h" 2 | 3 | 4 | namespace corecvs { 5 | 6 | 7 | } // namespace corecvs 8 | -------------------------------------------------------------------------------- /core/tinyxml2/tinyxml2.pri: -------------------------------------------------------------------------------- 1 | HEADERS += $$PWD/tinyxml2.h 2 | SOURCES += $$PWD/tinyxml2.cpp 3 | OTHER_FILES +=$$PWD/CMakeLists.txt 4 | -------------------------------------------------------------------------------- /out.json: -------------------------------------------------------------------------------- 1 | { 2 | "color":{ 3 | "R":128, 4 | "G":128, 5 | "B":128 6 | }, 7 | "point":{ 8 | "x":-1, 9 | "y":-1 10 | } 11 | } -------------------------------------------------------------------------------- /resources/application_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/application_view_list.png -------------------------------------------------------------------------------- /resources/arrow_rotate_clockwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/arrow_rotate_clockwise.png -------------------------------------------------------------------------------- /resources/folder-grey-open-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/folder-grey-open-24x24.png -------------------------------------------------------------------------------- /resources/shape_rotate_clockwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/shape_rotate_clockwise.png -------------------------------------------------------------------------------- /test/httpserver/pages/img/jojo0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/test/httpserver/pages/img/jojo0.jpg -------------------------------------------------------------------------------- /test/httpserver/pages/img/jojo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/test/httpserver/pages/img/jojo1.jpg -------------------------------------------------------------------------------- /test/httpserver/pages/img/jojo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/test/httpserver/pages/img/jojo2.jpg -------------------------------------------------------------------------------- /test/httpserver/pages/img/jojo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/test/httpserver/pages/img/jojo3.jpg -------------------------------------------------------------------------------- /wrappers/directShow/lib64/capdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/wrappers/directShow/lib64/capdll.dll -------------------------------------------------------------------------------- /wrappers/directShow/lib64/capdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/wrappers/directShow/lib64/capdll.lib -------------------------------------------------------------------------------- /wrappers/directShow/lib/capdll_vc10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/wrappers/directShow/lib/capdll_vc10.lib -------------------------------------------------------------------------------- /core/meta/packedDerivative.cpp: -------------------------------------------------------------------------------- 1 | #include "core/meta/packedDerivative.h" 2 | 3 | namespace corecvs { 4 | 5 | } // namespace corecvs 6 | 7 | -------------------------------------------------------------------------------- /core/tbbwrapper/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/tbbWrapper.h 4 | ) 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/arrow_rotate_anticlockwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/arrow_rotate_anticlockwise.png -------------------------------------------------------------------------------- /resources/shape_rotate_clockwise_exec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/resources/shape_rotate_clockwise_exec.png -------------------------------------------------------------------------------- /siblings/clone_gtest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git clone https://github.com/google/googletest.git 4 | cp -r googletest/googletest gtest 5 | 6 | -------------------------------------------------------------------------------- /utils/statistics/userPoll.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file userPoll.cpp 3 | * 4 | * \date Aug 4, 2014 5 | **/ 6 | 7 | #include "userPoll.h" 8 | 9 | -------------------------------------------------------------------------------- /wrappers/directShow/lib64/capdll_vc10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/wrappers/directShow/lib64/capdll_vc10.lib -------------------------------------------------------------------------------- /core/delaunay/delaunay.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | delaunay/*.h 3 | 4 | 5 | SOURCES += \ 6 | delaunay/*.cpp 7 | 8 | OTHER_FILES +=$$PWD/CMakeLists.txt 9 | -------------------------------------------------------------------------------- /core/tbbwrapper/tbbwrapper.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | tbbwrapper/tbbWrapper.h \ 3 | 4 | SOURCES += \ 5 | 6 | 7 | OTHER_FILES +=$$PWD/CMakeLists.txt 8 | -------------------------------------------------------------------------------- /applications/vinylCutter/resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/applications/vinylCutter/resources/background.png -------------------------------------------------------------------------------- /core/camerafixture/fixtureScenePart.cpp: -------------------------------------------------------------------------------- 1 | #include "core/camerafixture/fixtureScenePart.h" 2 | 3 | namespace corecvs { 4 | 5 | 6 | } // namespace corecvs 7 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt: -------------------------------------------------------------------------------- 1 | repository='https://github.com/google/googletest.git' 2 | module='' 3 | tag='' 4 | -------------------------------------------------------------------------------- /applications/base/baseOutputData.cpp: -------------------------------------------------------------------------------- 1 | #include "baseOutputData.h" 2 | /* 3 | * \file baseOutputData.cpp 4 | * 5 | * Created on: Sep 25, 2012 6 | */ 7 | 8 | -------------------------------------------------------------------------------- /applications/testbed/localHistogram.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file localHistogram.cpp 3 | * 4 | * \date Oct 18, 2013 5 | **/ 6 | 7 | #include "localHistogram.h" 8 | 9 | -------------------------------------------------------------------------------- /applications/testbed/resources/color_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/applications/testbed/resources/color_management.png -------------------------------------------------------------------------------- /core/features2d/features2d.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | features2d/*.h 3 | 4 | 5 | SOURCES += \ 6 | features2d/*.cpp 7 | 8 | OTHER_FILES=22351PWD/CMakeLists.txt 9 | -------------------------------------------------------------------------------- /core/function/function.pri: -------------------------------------------------------------------------------- 1 | SOURCES += \ 2 | function/function.cpp 3 | 4 | HEADERS += \ 5 | function/function.h 6 | OTHER_FILES +=$$PWD/CMakeLists.txt 7 | -------------------------------------------------------------------------------- /core/geometry/orientedBox.cpp: -------------------------------------------------------------------------------- 1 | #include "orientedBox.h" 2 | 3 | namespace corecvs { 4 | 5 | OrientedBox::OrientedBox() 6 | { 7 | 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /applications/robodetect/localHistogram.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file localHistogram.cpp 3 | * 4 | * \date Oct 18, 2013 5 | **/ 6 | 7 | #include "localHistogram.h" 8 | 9 | -------------------------------------------------------------------------------- /applications/robodetect/resources/color_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/applications/robodetect/resources/color_management.png -------------------------------------------------------------------------------- /core/geometry/polygonPointIterator.cpp: -------------------------------------------------------------------------------- 1 | #include "core/geometry/polygonPointIterator.h" 2 | 3 | 4 | namespace corecvs { 5 | 6 | 7 | } // namespace corecvs 8 | 9 | -------------------------------------------------------------------------------- /googletest/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt: -------------------------------------------------------------------------------- 1 | repository='https://github.com/google/googletest.git' 2 | module='' 3 | tag='' 4 | -------------------------------------------------------------------------------- /utils/serializer/widgetQtIterator.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file widgetQtIterator.cpp 3 | * 4 | * \date Mar 18, 2013 5 | **/ 6 | 7 | #include "widgetQtIterator.h" 8 | 9 | -------------------------------------------------------------------------------- /utils/statistics/contentStatistics.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file contentStatistics.cpp 3 | * 4 | * \date Mar 30, 2013 5 | **/ 6 | 7 | #include "contentStatistics.h" 8 | 9 | -------------------------------------------------------------------------------- /core/buffers/rgb24/bresenhamRasterizer.cpp: -------------------------------------------------------------------------------- 1 | #include "core/buffers/rgb24/bresenhamRasterizer.h" 2 | 3 | BresenhamRasterizer::BresenhamRasterizer() 4 | { 5 | 6 | } 7 | 8 | -------------------------------------------------------------------------------- /applications/testbed/resources/color_picker_alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/applications/testbed/resources/color_picker_alternative.png -------------------------------------------------------------------------------- /wrappers/v4l2/v4l2Libs.pri: -------------------------------------------------------------------------------- 1 | with_v4l2 { 2 | 3 | !build_pass: message(Switching on V4L2 support library) 4 | 5 | DEFINES += WITH_V4L2 6 | #LIBS += -lv4l2 7 | } 8 | -------------------------------------------------------------------------------- /core/kltflow/kltflow.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | kltflow/kltGenerator.h \ 3 | 4 | SOURCES += \ 5 | kltflow/kltGenerator.cpp \ 6 | 7 | OTHER_FILES +=$$PWD/CMakeLists.txt 8 | -------------------------------------------------------------------------------- /core/patterndetection/patterndetection.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | patterndetection/*.h \ 3 | 4 | SOURCES += \ 5 | patterndetection/*.cpp \ 6 | 7 | OTHER_FILES +=$$PWD/CMakeLists.txt 8 | -------------------------------------------------------------------------------- /applications/robodetect/resources/color_picker_alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PimenovAlexander/corecvs/HEAD/applications/robodetect/resources/color_picker_alternative.png -------------------------------------------------------------------------------- /core/cameracalibration/projection/equidistantProjection.cpp: -------------------------------------------------------------------------------- 1 | #include "equidistantProjection.h" 2 | #include "core/reflection/reflection.h" 3 | 4 | namespace corecvs { 5 | 6 | 7 | 8 | } 9 | -------------------------------------------------------------------------------- /core/delaunay/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/delaunay.h 4 | PRIVATE 5 | ${CMAKE_CURRENT_LIST_DIR}/delaunay.cpp 6 | ) 7 | -------------------------------------------------------------------------------- /core/assignment/assignment.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | assignment/assignmentOptimal.h 3 | 4 | SOURCES += \ 5 | assignment/assignmentOptimal.cpp 6 | 7 | OTHER_FILES +=$$PWD/CMakeLists.txt 8 | -------------------------------------------------------------------------------- /core/edgedetector/edgedetector.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | edgedetector/cannyDetector.h \ 3 | 4 | 5 | SOURCES += \ 6 | edgedetector/cannyDetector.cpp \ 7 | OTHER_FILES=22351PWD/CMakeLists.txt 8 | -------------------------------------------------------------------------------- /core/function/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/function.h 4 | PRIVATE 5 | ${CMAKE_CURRENT_LIST_DIR}/function.cpp 6 | 7 | ) 8 | -------------------------------------------------------------------------------- /core/tinyxml2/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/tinyxml2.h 4 | 5 | PRIVATE 6 | ${CMAKE_CURRENT_LIST_DIR}/tinyxml2.cpp 7 | ) 8 | -------------------------------------------------------------------------------- /core/kltflow/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/kltGenerator.h 4 | PRIVATE 5 | ${CMAKE_CURRENT_LIST_DIR}/kltGenerator.cpp 6 | ) 7 | -------------------------------------------------------------------------------- /core/meta/astOptimize.h: -------------------------------------------------------------------------------- 1 | #ifndef ASTOPTIMIZE_H 2 | #define ASTOPTIMIZE_H 3 | 4 | 5 | class AstOptimize 6 | { 7 | public: 8 | AstOptimize(); 9 | }; 10 | 11 | #endif // ASTOPTIMIZE_H 12 | -------------------------------------------------------------------------------- /wrappers/joystick/joystick.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | joystick/joystickInterface.h \ 3 | 4 | SOURCES += \ 5 | joystick/joystickInterface.cpp \ 6 | 7 | OTHER_FILES +=$$PWD/sourcelist.cmake 8 | -------------------------------------------------------------------------------- /applications/drone/drone-core/xml/worldParameters.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tools/generator/regen-all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./regen-core.sh 4 | ./regen-recorder.sh 5 | ./regen-basestub.sh 6 | ./regen-utils.sh 7 | #./regen-merger.sh 8 | 9 | ./regen-documentation.sh 10 | -------------------------------------------------------------------------------- /core/geometry/mesh/meshClicker.cpp: -------------------------------------------------------------------------------- 1 | #include "core/geometry/mesh/meshClicker.h" 2 | 3 | namespace corecvs { 4 | 5 | MeshClicker::MeshClicker() 6 | { 7 | 8 | } 9 | 10 | } // namespace corecvs 11 | 12 | -------------------------------------------------------------------------------- /core/iterative/iterative.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | iterative/minresQLP.h \ 3 | iterative/pcg.h 4 | 5 | SOURCES += \ 6 | iterative/minresQLP.cpp \ 7 | iterative/pcg.cpp 8 | OTHER_FILES +=$$PWD/CMakeLists.txt 9 | -------------------------------------------------------------------------------- /wrappers/opencv/featureDetectorCV.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file featureDetectorCV.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \ingroup utils 6 | * \date Nov 26, 2012 7 | */ 8 | #include "featureDetectorCV.h" 9 | -------------------------------------------------------------------------------- /wrappers/rapidjson/rapidjsonLibs.pri: -------------------------------------------------------------------------------- 1 | with_rapidjson { 2 | !build_pass: message(RapidJson module is ready for use) 3 | 4 | #RAPIDJSON_PATH = $$(RAPIDJSON_PATH) 5 | DEFINES += WITH_RAPIDJSON 6 | } 7 | -------------------------------------------------------------------------------- /core/assignment/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/assignmentOptimal.h 4 | PRIVATE 5 | ${CMAKE_CURRENT_LIST_DIR}/assignmentOptimal.cpp 6 | ) 7 | 8 | -------------------------------------------------------------------------------- /core/edgedetector/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/cannyDetector.h 4 | PRIVATE 5 | ${CMAKE_CURRENT_LIST_DIR}/cannyDetector.cpp 6 | ) 7 | 8 | -------------------------------------------------------------------------------- /applications/robodetect/resources/testbed.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | color_picker_alternative.png 4 | color_management.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /applications/testbed/resources/testbed.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | color_picker_alternative.png 4 | color_management.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /applications/robodetect/resources/robodetect.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | color_picker_alternative.png 4 | color_management.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /utils/corestructs/flowFabricControlWidget.cpp: -------------------------------------------------------------------------------- 1 | #include "flowFabricControlWidget.h" 2 | #include "ui_flowFabricControlWidget.h" 3 | 4 | 5 | FlowFabricControlWidget::~FlowFabricControlWidget() 6 | { 7 | delete mUi; 8 | } 9 | -------------------------------------------------------------------------------- /core/kalman/uduDecomposed.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file uduDecomposed.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \date Feb 14, 2011 6 | * \author alexander 7 | */ 8 | 9 | namespace corecvs { 10 | } //namespace corecvs 11 | 12 | -------------------------------------------------------------------------------- /test-core/snooker/snookerSegmentator.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file SnookerSegmentator.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \date Apr 20, 2011 6 | * \author alexander 7 | */ 8 | 9 | #include "snookerSegmentator.h" 10 | 11 | -------------------------------------------------------------------------------- /core/buffers/booleanBuffer.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file booleanBuffer.cpp 3 | * 4 | * \date Sep 28, 2013 5 | **/ 6 | 7 | #include "core/buffers/booleanBuffer.h" 8 | 9 | namespace corecvs 10 | { 11 | 12 | } /* namespace corecvs */ 13 | -------------------------------------------------------------------------------- /test-core/snooker/reflectionSegmentator.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file ReflectionSegmentator.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \date Apr 20, 2011 6 | * \author alexander 7 | */ 8 | 9 | #include "reflectionSegmentator.h" 10 | -------------------------------------------------------------------------------- /utils/uis/aboutDialog.cpp: -------------------------------------------------------------------------------- 1 | #include "aboutDialog.h" 2 | 3 | AboutDialog::AboutDialog(QWidget *parent) 4 | : QWidget(parent) 5 | { 6 | ui.setupUi(this); 7 | } 8 | 9 | AboutDialog::~AboutDialog() 10 | { 11 | 12 | } 13 | 14 | -------------------------------------------------------------------------------- /test-core/ultrasound/model.h: -------------------------------------------------------------------------------- 1 | #ifndef MODEL_H 2 | #define MODEL_H 3 | 4 | #ifdef WITH_EIGEN 5 | #include 6 | #include 7 | 8 | Eigen::VectorXd count(Eigen::VectorXd a); 9 | 10 | #endif 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /utils/opengl/sourcelist.cmake: -------------------------------------------------------------------------------- 1 | file(GLOB CUR_SRC_FILES ${CMAKE_CURRENT_LIST_DIR}/*.cpp) 2 | file(GLOB CUR_HDR_FILES ${CMAKE_CURRENT_LIST_DIR}/*.h) 3 | 4 | set(SRC_FILES ${SRC_FILES} ${CUR_SRC_FILES}) 5 | set(HDR_FILES ${HDR_FILES} ${CUR_HDR_FILES}) -------------------------------------------------------------------------------- /core/polynomial/polynomial.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | polynomial/polynomialSolver.h \ 3 | polynomial/polynomial.h 4 | 5 | SOURCES += \ 6 | polynomial/polynomialSolver.cpp \ 7 | polynomial/polynomial.cpp 8 | OTHER_FILES +=$$PWD/CMakeLists.txt 9 | -------------------------------------------------------------------------------- /utils/corestructs/zoomablearea.cpp: -------------------------------------------------------------------------------- 1 | #include "zoomablearea.h" 2 | 3 | ZoomableArea::ZoomableArea(QWidget *parent) 4 | : QWidget(parent) 5 | { 6 | ui.setupUi(this); 7 | } 8 | 9 | ZoomableArea::~ZoomableArea() 10 | { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /utils/fileformats/sourcelist.cmake: -------------------------------------------------------------------------------- 1 | file(GLOB CUR_SRC_FILES ${CMAKE_CURRENT_LIST_DIR}/*.cpp) 2 | file(GLOB CUR_HDR_FILES ${CMAKE_CURRENT_LIST_DIR}/*.h) 3 | 4 | set(SRC_FILES ${SRC_FILES} ${CUR_SRC_FILES}) 5 | set(HDR_FILES ${HDR_FILES} ${CUR_HDR_FILES}) -------------------------------------------------------------------------------- /utils/filters/legacy/affinefilter.cpp: -------------------------------------------------------------------------------- 1 | #include "affinefilter.h" 2 | 3 | AffineFilter::AffineFilter(QWidget *parent) 4 | : QWidget(parent) 5 | { 6 | ui.setupUi(this); 7 | } 8 | 9 | AffineFilter::~AffineFilter() 10 | { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /utils/flowcolorers/sourcelist.cmake: -------------------------------------------------------------------------------- 1 | file(GLOB CUR_SRC_FILES ${CMAKE_CURRENT_LIST_DIR}/*.cpp) 2 | file(GLOB CUR_HDR_FILES ${CMAKE_CURRENT_LIST_DIR}/*.h) 3 | 4 | set(SRC_FILES ${SRC_FILES} ${CUR_SRC_FILES}) 5 | set(HDR_FILES ${HDR_FILES} ${CUR_HDR_FILES}) -------------------------------------------------------------------------------- /utils/memoryuse/sourcelist.cmake: -------------------------------------------------------------------------------- 1 | file(GLOB CUR_SRC_FILES ${CMAKE_CURRENT_LIST_DIR}/*.cpp) 2 | file(GLOB CUR_HDR_FILES ${CMAKE_CURRENT_LIST_DIR}/*.h) 3 | 4 | set(SRC_FILES ${SRC_FILES} ${CUR_SRC_FILES}) 5 | set(HDR_FILES ${HDR_FILES} ${CUR_HDR_FILES}) -------------------------------------------------------------------------------- /utils/serializer/sourcelist.cmake: -------------------------------------------------------------------------------- 1 | file(GLOB CUR_SRC_FILES ${CMAKE_CURRENT_LIST_DIR}/*.cpp) 2 | file(GLOB CUR_HDR_FILES ${CMAKE_CURRENT_LIST_DIR}/*.h) 3 | 4 | set(SRC_FILES ${SRC_FILES} ${CUR_SRC_FILES}) 5 | set(HDR_FILES ${HDR_FILES} ${CUR_HDR_FILES}) -------------------------------------------------------------------------------- /utils/widgets/shift3dWidget.cpp: -------------------------------------------------------------------------------- 1 | #include "shift3dWidget.h" 2 | 3 | Shift3dWidget::Shift3dWidget(QWidget *parent) 4 | : QWidget(parent) 5 | { 6 | ui.setupUi(this); 7 | } 8 | 9 | Shift3dWidget::~Shift3dWidget() 10 | { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /core/buffers/kernels/logicKernels.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file LogicKernels.cpp 3 | * 4 | * \date Sep 24, 2013 5 | **/ 6 | 7 | #include "core/buffers/kernels/logicKernels.h" 8 | 9 | namespace corecvs 10 | { 11 | 12 | } /* namespace corecvs */ 13 | -------------------------------------------------------------------------------- /core/buffers/rgb24/abstractPainter.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file abstractPainter.cpp 3 | * 4 | * \date Nov 22, 2012 5 | **/ 6 | 7 | #include "core/buffers/rgb24/abstractPainter.h" 8 | 9 | namespace corecvs { 10 | 11 | 12 | } /* namespace corecvs */ 13 | -------------------------------------------------------------------------------- /core/iterative/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/minresQLP.h 4 | ${CMAKE_CURRENT_LIST_DIR}/pcg.h 5 | PRIVATE 6 | ${CMAKE_CURRENT_LIST_DIR}/minresQLP.cpp 7 | ${CMAKE_CURRENT_LIST_DIR}/pcg.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /core/stats/stats.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | stats/calculationStats.h \ 3 | stats/graphData.h \ 4 | 5 | 6 | 7 | SOURCES += \ 8 | stats/calculationStats.cpp \ 9 | stats/graphData.cpp \ 10 | 11 | OTHER_FILES +=$$PWD/CMakeLists.txt 12 | -------------------------------------------------------------------------------- /test-core/cppunit_test/cppunit_test.pro: -------------------------------------------------------------------------------- 1 | TARGET = cppunit 2 | 3 | include(../test.pri) 4 | 5 | 6 | SOURCES += \ 7 | cppunit_test.cpp \ 8 | MatcherTest.cpp 9 | 10 | HEADERS += MatcherTest.h 11 | 12 | LIBS += -L/usr/lib/ -lcppunit 13 | -------------------------------------------------------------------------------- /utils/memoryuse/macMemoryUsageCalculator.cpp: -------------------------------------------------------------------------------- 1 | #include "macMemoryUsageCalculator.h" 2 | 3 | void MacMemoryUsageCalculator::getMemoryUsageImpl() 4 | { 5 | // nothing here yet 6 | 7 | mVirtualSize = 0; 8 | mResidentSize = 0; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /core/cameracalibration/projection/projectionModels.cpp: -------------------------------------------------------------------------------- 1 | #include "core/cameracalibration/projection/projectionModels.h" 2 | 3 | 4 | namespace corecvs { 5 | 6 | CameraProjection::~CameraProjection() 7 | { 8 | 9 | } 10 | 11 | } // namespace corecvs 12 | -------------------------------------------------------------------------------- /core/framesources/decoders/mjpegDecoder.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class MjpegDecoder 4 | { 5 | public: 6 | MjpegDecoder(); 7 | 8 | int decode(unsigned char **pic 9 | , unsigned char *buf, int *width, int *height); 10 | }; 11 | 12 | 13 | -------------------------------------------------------------------------------- /core/meta/floatJIT.cpp: -------------------------------------------------------------------------------- 1 | #include "core/meta/floatJIT.h" 2 | 3 | namespace corecvs { 4 | 5 | FloatJIT::FloatJIT() 6 | { 7 | 8 | } 9 | 10 | void FloatJIT::toAsm(ASTNodeInt * /*node*/) 11 | { 12 | 13 | 14 | 15 | } 16 | 17 | } // namespace corecvs 18 | -------------------------------------------------------------------------------- /core/reflection/stringPrinterVisitor.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file stringPrinterVisitor.cpp 3 | * 4 | * \date May 12, 2014 5 | **/ 6 | 7 | #include "core/reflection/stringPrinterVisitor.h" 8 | 9 | namespace corecvs 10 | { 11 | 12 | } /* namespace corecvs */ 13 | -------------------------------------------------------------------------------- /core/clustering3d/swarmPoint.cpp: -------------------------------------------------------------------------------- 1 | #include "core/clustering3d/swarmPoint.h" 2 | 3 | namespace corecvs { 4 | 5 | double SwarmPoint::distTo(SwarmPoint other) 6 | { 7 | return (this->point - other.point).l1Metric(); 8 | } 9 | 10 | } //namespace corecvs 11 | -------------------------------------------------------------------------------- /core/filesystem/filesystem.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | filesystem/folderScanner.h \ 3 | filesystem/tempFolder.h \ 4 | 5 | SOURCES += \ 6 | filesystem/folderScanner.cpp \ 7 | filesystem/tempFolder.cpp \ 8 | 9 | OTHER_FILES +=$$PWD/CMakeLists.txt 10 | -------------------------------------------------------------------------------- /core/stereointerface/stereointerface.pri: -------------------------------------------------------------------------------- 1 | SOURCES += \ 2 | $$PWD/processor6D.cpp \ 3 | $$PWD/dummyFlowProcessor.cpp \ 4 | 5 | HEADERS += \ 6 | $$PWD/processor6D.h \ 7 | $$PWD/dummyFlowProcessor.h \ 8 | 9 | OTHER_FILES += $$PWD/CMakeLists.txt 10 | -------------------------------------------------------------------------------- /utils/uis/textLabelWidget.cpp: -------------------------------------------------------------------------------- 1 | #include "textLabelWidget.h" 2 | 3 | TextLabelWidget::TextLabelWidget(QWidget *parent) 4 | : ViAreaWidget(parent, false) 5 | { 6 | ui.setupUi(this); 7 | } 8 | 9 | TextLabelWidget::~TextLabelWidget() 10 | { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /core/buffers/g12Buffer3d.cpp: -------------------------------------------------------------------------------- 1 | #include "core/buffers/g12Buffer3d.h" 2 | namespace corecvs { 3 | 4 | SwarmPoint* G12Buffer3d::p0 = NULL; 5 | 6 | G12Buffer3d::~G12Buffer3d() 7 | { 8 | delete m3d; 9 | delete mSP; 10 | } 11 | 12 | 13 | } //namespace corecvs 14 | -------------------------------------------------------------------------------- /utils/filters/graph/inputBlockPresentation.cpp: -------------------------------------------------------------------------------- 1 | #include "inputBlockPresentation.h" 2 | 3 | //void InputBlockPresentation::draw(DiagramScene *scene, int x, int y) 4 | //{ 5 | // drawBlock(scene, x, y); 6 | 7 | // drawOutputPins(scene); 8 | 9 | //} // draw 10 | -------------------------------------------------------------------------------- /core/math/generic/genericMath.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * GenericMath.cpp 3 | * 4 | * Created on: Sep 12, 2012 5 | * Author: alexander 6 | */ 7 | 8 | #include "core/math/generic/genericMath.h" 9 | 10 | namespace corecvs 11 | { 12 | 13 | 14 | } /* namespace corecvs */ 15 | -------------------------------------------------------------------------------- /core/segmentation/segmentation.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | segmentation/segmentator.h \ 3 | segmentation/tileGrid.h \ 4 | 5 | 6 | SOURCES += \ 7 | segmentation/segmentator.cpp \ 8 | segmentation/tileGrid.cpp \ 9 | 10 | OTHER_FILES +=$$PWD/CMakeLists.txt 11 | -------------------------------------------------------------------------------- /utils/memoryuse/macMemoryUsageCalculator.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "memoryUsageCalculator.h" 3 | 4 | class MacMemoryUsageCalculator : public MemoryUsageCalculator 5 | { 6 | Q_OBJECT 7 | protected: 8 | virtual void getMemoryUsageImpl(); 9 | }; 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/framesources/dummyVideoEncoderInterface.cpp: -------------------------------------------------------------------------------- 1 | #include "dummyVideoEncoderInterface.h" 2 | 3 | 4 | namespace corecvs { 5 | 6 | DummyVideoEncoderInterface::DummyVideoEncoderInterface(bool trace) : 7 | trace(trace) 8 | { 9 | 10 | } 11 | 12 | } // namespace corecvs 13 | -------------------------------------------------------------------------------- /core/xml/generated/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | file(GLOB SRC_FILES ${CMAKE_CURRENT_LIST_DIR}/*.cpp) 2 | file(GLOB HDR_FILES ${CMAKE_CURRENT_LIST_DIR}/*.h) 3 | 4 | target_sources(corecvs 5 | PUBLIC 6 | ${HDR_FILES} 7 | PRIVATE 8 | ${SRC_FILES} 9 | 10 | ) 11 | -------------------------------------------------------------------------------- /core/buffers/flow/element6D.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file element6D.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \date Aug 3, 2011 6 | * \author alexander 7 | */ 8 | 9 | #include "core/buffers/flow/element6D.h" 10 | namespace corecvs { 11 | 12 | 13 | } //namespace corecvs 14 | 15 | -------------------------------------------------------------------------------- /core/joystick/joystick.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | joystick/joystickInterface.h \ 3 | $$PWD/playbackJoystickInterface.h 4 | 5 | SOURCES += \ 6 | joystick/joystickInterface.cpp \ 7 | $$PWD/playbackJoystickInterface.cpp 8 | 9 | OTHER_FILES +=$$PWD/CMakeLists.txt 10 | -------------------------------------------------------------------------------- /core/math/helperFunctions.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file helperFunctions.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \date Oct 21, 2011 6 | * \author alexander 7 | */ 8 | 9 | #include "core/math/helperFunctions.h" 10 | namespace corecvs { 11 | 12 | } //namespace corecvs 13 | 14 | -------------------------------------------------------------------------------- /test/softrender/render.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "We would try to render some images for you". 4 | 5 | echo "Runing tests to get some models" 6 | 7 | 8 | echo "Downloading objects" 9 | wget https://drive.google.com/open?id=10GZtp2vAIfvNdzYeI6btZ03HTMNWUZd8 -o house_obj.zip 10 | -------------------------------------------------------------------------------- /core/buffers/memory/memoryBlock.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file memoryBlock.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \date Apr 9, 2011 6 | * \author alexander 7 | */ 8 | 9 | #include "core/buffers/memory/memoryBlock.h" 10 | namespace corecvs { 11 | 12 | } //namespace corecvs 13 | 14 | -------------------------------------------------------------------------------- /core/kalman/cooSparseMatrix.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file cooSparseMatrix.cpp 3 | * \brief 4 | * 5 | * \ingroup cppcorefiles 6 | * \date Jan 09, 2011 7 | * \author alexander 8 | */ 9 | 10 | #include 11 | namespace corecvs { 12 | 13 | 14 | 15 | } //namespace corecvs 16 | 17 | -------------------------------------------------------------------------------- /test-core/sphericdist/kalman.pg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/gnuplot 2 | reset 3 | set terminal png size 1000, 700 4 | 5 | set xlabel "step" 6 | set ylabel "value" 7 | set title "Kalman Filter" 8 | set grid 9 | 10 | set style data lines 11 | 12 | plot \ 13 | "out.txt" using 1:2 title "Correction Array" -------------------------------------------------------------------------------- /applications/drone/drone-core/comcontroller.h: -------------------------------------------------------------------------------- 1 | #ifndef COMCONTROLLER_H 2 | #define COMCONTROLLER_H 3 | 4 | //#include "controllrecord.h" 5 | 6 | #include 7 | 8 | 9 | 10 | class ComController 11 | { 12 | public: 13 | 14 | 15 | }; 16 | 17 | #endif // COMCONTROLLER_H 18 | -------------------------------------------------------------------------------- /core/buffers/abstractBuffer.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file abstractBuffer.cpp 3 | * \brief TODO 4 | * 5 | * \ingroup cppcorefiles 6 | * \date Dec 21, 2012 7 | * \author sf 8 | */ 9 | #include "core/buffers/abstractBuffer.h" 10 | 11 | namespace corecvs { 12 | 13 | 14 | } //namespace corecvs 15 | -------------------------------------------------------------------------------- /core/kalman/upperUnitaryMatrix.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file upperUnitaryMatrix.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \date Jan 11, 2011 6 | * \author alexander 7 | */ 8 | 9 | #include "core/kalman/upperUnitaryMatrix.h" 10 | namespace corecvs { 11 | 12 | 13 | } //namespace corecvs 14 | 15 | -------------------------------------------------------------------------------- /wrappers/libfftw/sourcelist.cmake: -------------------------------------------------------------------------------- 1 | set (HDR_FILES 2 | ${HDR_FILES} 3 | ) 4 | 5 | 6 | set (SRC_FILES 7 | ${SRC_FILES} 8 | ) 9 | 10 | add_definitions(-DWITH_FFTW) 11 | set (INC_PATHS 12 | ${INC_PATHS} 13 | ${FFTW_INCLUDE_DIR} 14 | ) 15 | 16 | set(LIBS ${LIBS} ${FFTW_LIB}) 17 | -------------------------------------------------------------------------------- /core/math/quaternion.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file quaternion.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \ingroup cppcorefiles 6 | * \date Jun 22, 2010 7 | * \author alexander 8 | */ 9 | 10 | #include "core/math/quaternion.h" 11 | namespace corecvs { 12 | 13 | 14 | } //namespace corecvs 15 | 16 | -------------------------------------------------------------------------------- /tools/generator/xml/baseStub.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /utils/serializer/serializer.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | class Serializer 5 | { 6 | public: 7 | static void serialize(QWidget const & widget); 8 | static void deserialize(QWidget * widget); 9 | private: 10 | static QString getPath(QWidget const & widget); 11 | }; 12 | 13 | -------------------------------------------------------------------------------- /core/utils/propertyList.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file propertyList.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \ingroup cppcorefiles 6 | * \date May 24, 2010 7 | * \author alexander 8 | */ 9 | 10 | #include "core/utils/propertyList.h" 11 | namespace corecvs { 12 | 13 | 14 | } //namespace corecvs 15 | 16 | -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(TEST_SUBDIRECTORIES 2 | generator 3 | ) 4 | 5 | foreach(test_subdirectory ${TEST_SUBDIRECTORIES}) 6 | message(STATUS "adding subdirectory applications/${test_subdirectory}") 7 | add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/${test_subdirectory}) 8 | endforeach(test_subdirectory) 9 | -------------------------------------------------------------------------------- /utils/corestructs/parametersControlWidgetBase.cpp: -------------------------------------------------------------------------------- 1 | #include "parametersControlWidgetBase.h" 2 | 3 | BaseReflectionStatic *ParametersControlWidgetBase::createParametersVirtual() const 4 | { 5 | return NULL; 6 | } 7 | 8 | ParametersControlWidgetBase::~ParametersControlWidgetBase() 9 | { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /core/segmentation/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/segmentator.h 4 | ${CMAKE_CURRENT_LIST_DIR}/tileGrid.h 5 | 6 | PRIVATE 7 | ${CMAKE_CURRENT_LIST_DIR}/segmentator.cpp 8 | ${CMAKE_CURRENT_LIST_DIR}/tileGrid.cpp 9 | ) 10 | 11 | -------------------------------------------------------------------------------- /core/stats/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/calculationStats.h 4 | ${CMAKE_CURRENT_LIST_DIR}/graphData.h 5 | PRIVATE 6 | ${CMAKE_CURRENT_LIST_DIR}/calculationStats.cpp 7 | ${CMAKE_CURRENT_LIST_DIR}/graphData.cpp 8 | ) 9 | 10 | -------------------------------------------------------------------------------- /wrappers/joystick/sourcelist.cmake: -------------------------------------------------------------------------------- 1 | set (HDR_FILES 2 | ${HDR_FILES} 3 | ${CMAKE_CURRENT_LIST_DIR}/linuxJoystickInterface.h 4 | ) 5 | include_directories(${CMAKE_CURRENT_LIST_DIR}) 6 | 7 | set (SRC_FILES 8 | ${SRC_FILES} 9 | ${CMAKE_CURRENT_LIST_DIR}/linuxJoystickInterface.cpp 10 | ) 11 | 12 | -------------------------------------------------------------------------------- /core/buffers/disparityBuffer.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file disparityBuffer.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \ingroup cppcorefiles 6 | * \date Jun 22, 2010 7 | * \author alexander 8 | */ 9 | 10 | #include "core/buffers/disparityBuffer.h" 11 | namespace corecvs { 12 | 13 | } //namespace corecvs 14 | 15 | -------------------------------------------------------------------------------- /core/buffers/kernels/threshold.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file threshold.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \ingroup cppcorefiles 6 | * \date Oct 8, 2010 7 | * \author alexander 8 | */ 9 | 10 | #include "core/buffers/kernels/threshold.h" 11 | namespace corecvs { 12 | 13 | 14 | } //namespace corecvs 15 | 16 | -------------------------------------------------------------------------------- /core/filesystem/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/folderScanner.h 4 | ${CMAKE_CURRENT_LIST_DIR}/tempFolder.h 5 | 6 | PRIVATE 7 | ${CMAKE_CURRENT_LIST_DIR}/folderScanner.cpp 8 | ${CMAKE_CURRENT_LIST_DIR}/tempFolder.cpp 9 | ) 10 | -------------------------------------------------------------------------------- /core/rectification/essentialMatrix.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file essentialMatrix.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \date Oct 1, 2011 6 | * \author alexander 7 | */ 8 | 9 | #include "core/rectification/essentialMatrix.h" 10 | namespace corecvs { 11 | 12 | 13 | 14 | 15 | } //namespace corecvs 16 | 17 | -------------------------------------------------------------------------------- /core/stereointerface/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/processor6D.h 4 | ${CMAKE_CURRENT_LIST_DIR}/dummyFlowProcessor.h 5 | PRIVATE 6 | ${CMAKE_CURRENT_LIST_DIR}/processor6D.cpp 7 | ${CMAKE_CURRENT_LIST_DIR}/dummyFlowProcessor.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /utils/memoryuse/linuxMemoryUsageCalculator.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "memoryUsageCalculator.h" 4 | 5 | class LinuxMemoryUsageCalculator : public MemoryUsageCalculator 6 | { 7 | Q_OBJECT 8 | protected: 9 | virtual void getMemoryUsageImpl(); 10 | virtual void getTotalMemoryImpl(); 11 | }; 12 | 13 | -------------------------------------------------------------------------------- /utils/memoryuse/windowsMemoryUsageCalculator.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "memoryUsageCalculator.h" 3 | 4 | class WindowsMemoryUsageCalculator : public MemoryUsageCalculator 5 | { 6 | Q_OBJECT 7 | protected: 8 | virtual void getMemoryUsageImpl(); 9 | virtual void getTotalMemoryImpl(); 10 | }; 11 | 12 | -------------------------------------------------------------------------------- /applications/apriltag_test/apriltag_test.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by jakhremchik on 14.11.2019. 3 | // 4 | 5 | #ifndef CORECVS_APRILTAG_TEST_H 6 | #define CORECVS_APRILTAG_TEST_H 7 | 8 | #include "opencv2/opencv.hpp" 9 | #include "wrappers/apriltag_wrapper/apriltagDetector.h" 10 | 11 | #endif //CORECVS_APRILTAG_TEST_H 12 | -------------------------------------------------------------------------------- /core/cammodel/energyBuffer.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file energyBuffer.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \ingroup cppcorefiles 6 | * \date Mar 2, 2010 7 | * \author alexander 8 | */ 9 | 10 | #include "core/cammodel/energyBuffer.h" 11 | namespace corecvs { 12 | 13 | 14 | 15 | } //namespace corecvs 16 | 17 | -------------------------------------------------------------------------------- /core/fileformats/bufferLoader.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file bufferLoader.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \ingroup cppcorefiles 6 | * \date Jun 22, 2010 7 | * \author alexander 8 | */ 9 | 10 | #include "core/fileformats/bufferLoader.h" 11 | namespace corecvs { 12 | 13 | 14 | } //namespace corecvs 15 | 16 | -------------------------------------------------------------------------------- /core/segmentation/segmentator.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file segmentator.cpp 3 | * \brief Add Comment Here 4 | * 5 | * \ingroup cppcorefiles 6 | * \date Mar 24, 2010 7 | * \author alexander 8 | */ 9 | 10 | #include "core/segmentation/segmentator.h" 11 | namespace corecvs { 12 | 13 | 14 | } //namespace corecvs 15 | 16 | -------------------------------------------------------------------------------- /test-core/eigen/main_test_eigen_integration.cpp: -------------------------------------------------------------------------------- 1 | 2 | #ifdef WITH_EIGEN 3 | #include 4 | 5 | #include "gtest/gtest.h" 6 | 7 | TEST(Eigen3Integration, Basic) 8 | { 9 | Eigen::Matrix3d test; 10 | test.setZero(); 11 | ASSERT_EQ(test.determinant(), 0.0); 12 | } 13 | 14 | #endif // WITH_EIGEN 15 | -------------------------------------------------------------------------------- /core/joystick/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(corecvs 2 | PUBLIC 3 | ${CMAKE_CURRENT_LIST_DIR}/joystickInterface.h 4 | ${CMAKE_CURRENT_LIST_DIR}/playbackJoystickInterface.h 5 | PRIVATE 6 | ${CMAKE_CURRENT_LIST_DIR}/joystickInterface.cpp 7 | ${CMAKE_CURRENT_LIST_DIR}/playbackJoystickInterface.cpp 8 | ) 9 | 10 | -------------------------------------------------------------------------------- /core/meanshift/meanshift.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | meanshift/meanShiftCalculator.h \ 3 | meanshift/meanShiftWindow.h \ 4 | meanshift/abstractMeanShiftKernel.h \ 5 | 6 | 7 | SOURCES += \ 8 | meanshift/meanShiftCalculator.cpp \ 9 | meanshift/meanShiftWindow.cpp \ 10 | 11 | OTHER_FILES +=$$PWD/CMakeLists.txt 12 | -------------------------------------------------------------------------------- /core/math/projectiveTransform.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * \file projectiveTransform.cpp 3 | * \brief Add Comment Here 4 | * 5 | * 6 | * \ingroup cppcorefiles 7 | * \date Feb 25, 2010 8 | * \author alexander 9 | */ 10 | 11 | #include "core/math/projectiveTransform.h" 12 | namespace corecvs { 13 | 14 | } //namespace corecvs 15 | 16 | -------------------------------------------------------------------------------- /test/stereointerface/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project (StereoInterface) 2 | 3 | 4 | set (STEREO_NAME stereo ) 5 | 6 | set (SRC_FILES 7 | main_stereo.cpp 8 | ) 9 | 10 | set (HDR_FILES 11 | ) 12 | 13 | add_executable(${STEREO_NAME} ${SRC_FILES} ${HDR_FILES}) 14 | 15 | target_link_libraries(${STEREO_NAME} corecvs pthread) 16 | 17 | -------------------------------------------------------------------------------- /wrappers/httpserver/libs/imageGenerator.h: -------------------------------------------------------------------------------- 1 | #ifndef LIBEVENTAPP_IMAGEGENERATOR_H 2 | #define LIBEVENTAPP_IMAGEGENERATOR_H 3 | 4 | // 5 | // Created by dio on 7/26/20. 6 | // 7 | 8 | #include 9 | #include 10 | 11 | 12 | const char *generateImage(int id = 0); 13 | 14 | #endif //LIBEVENTAPP_IMAGEGENERATOR_H 15 | -------------------------------------------------------------------------------- /core/meta/floatJIT.h: -------------------------------------------------------------------------------- 1 | #ifndef FLOATJIT_H 2 | #define FLOATJIT_H 3 | 4 | #include "core/meta/astNode.h" 5 | 6 | namespace corecvs { 7 | 8 | class FloatJIT 9 | { 10 | public: 11 | FloatJIT(); 12 | 13 | static void toAsm (ASTNodeInt *node); 14 | 15 | }; 16 | 17 | 18 | } //namespace corecvs 19 | 20 | #endif // FLOATJIT_H 21 | -------------------------------------------------------------------------------- /core/meta/meta.pri: -------------------------------------------------------------------------------- 1 | HEADERS += \ 2 | meta/astNode.h \ 3 | meta/packedDerivative.h \ 4 | meta/floatJIT.h \ 5 | meta/astOptimize.h 6 | 7 | SOURCES += \ 8 | meta/astNode.cpp \ 9 | meta/packedDerivative.cpp \ 10 | meta/floatJIT.cpp \ 11 | meta/astOptimize.cpp 12 | 13 | OTHER_FILES +=$$PWD/CMakeLists.txt 14 | -------------------------------------------------------------------------------- /test/httpserver/pages/html/Header.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Title 9 | %s title 10 | 11 |