Drop vision-source API 35/300435/1 accepted/tizen/7.0/unified/20231025.180937
authorKwanghoon Son <k.son@samsung.com>
Wed, 25 Oct 2023 02:36:12 +0000 (11:36 +0900)
committerKwanghoon Son <k.son@samsung.com>
Wed, 25 Oct 2023 02:36:12 +0000 (11:36 +0900)
[Version] 0.23.50

vision-source written in demo codes were removed.
demo test code will be replace to mv_test with proper code.

Change-Id: Ib43b4ed86d7fd504b8b348c31bc86c3fa6741454
Signed-off-by: Kwanghoon Son <k.son@samsung.com>
packaging/capi-media-vision.spec
test/testsuites/CMakeLists.txt
test/testsuites/machine_learning/inference/CMakeLists.txt

index e33a14ab46f2b9b674f18574fde9a1576ba9eb08..09c1b470f3bac7d2e2a2a90ef09f22fb88e51501 100644 (file)
@@ -1,6 +1,6 @@
 Name:        capi-media-vision
 Summary:     Media Vision library for Tizen Native API
-Version:     0.23.49
+Version:     0.23.50
 Release:     3
 Group:       Multimedia/Framework
 License:     Apache-2.0 and BSD-3-Clause
index 115273dd1941c3bf9720d14bc997eeca3715816b..6c36261611434e248de3e74c57940f871e998fd5 100644 (file)
@@ -11,7 +11,6 @@ add_subdirectory(${PROJECT_SOURCE_DIR}/image)
 add_subdirectory(${PROJECT_SOURCE_DIR}/surveillance)
 add_subdirectory(${PROJECT_SOURCE_DIR}/machine_learning)
 add_subdirectory(${PROJECT_SOURCE_DIR}/tracker)
-add_subdirectory(${PROJECT_SOURCE_DIR}/mv3d)
 
 if(BUILD_VISUALIZER)
     add_subdirectory(${PROJECT_SOURCE_DIR}/visualizer)
index 029390c27a8d00774625f4aa10c51ef3a9caa9f5..38a555a025e32dd38562994040ddbef08573a655 100644 (file)
@@ -9,35 +9,4 @@ target_link_libraries(${PROJECT_NAME} mv_inference
                                       mv_testsuite_common)
 
 install(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR})
-
-## mv_odstream_test_sutie
-pkg_check_modules(GLIB_PKG glib-2.0)
-
-if (NOT GLIB_PKG_FOUND)
-    message(SEND_ERROR "Failed to find glib")
-    return()
-else()
-    include_directories(${GLIB_PKG_INCLUDE_DIRS})
-endif()
-
-SET(dependents "vision-source")
-
-INCLUDE(FindPkgConfig)
-pkg_check_modules(${PROJECT_NAME}_DEP REQUIRED ${dependents})
-
-add_executable(mv_odstream_test_suite odstream_test_suite.cpp)
-
-target_link_libraries(mv_odstream_test_suite ${MV_INFERENCE_LIB_NAME}
-                                    ${${PROJECT_NAME}_DEP_LIBRARIES}
-                                    ${OpenCV_LIBS}
-                                    glib-2.0
-                                    capi-system-info
-                                    dlog
-                                    mv_image_helper
-                                    mv_video_helper
-                                    mv_testsuite_common)
-if(BUILD_VISUALIZER)
-    target_link_libraries(mv_odstream_test_suite mv_visualizer)
-endif()
 target_include_directories(${PROJECT_NAME} PUBLIC include ${${PROJECT_NAME}_DEP_INCLUDE_DIRS} ${CMAKE_SOURCE_DIR}/include)
-install(TARGETS mv_odstream_test_suite DESTINATION ${CMAKE_INSTALL_BINDIR})