sowson / darknet

Darknet on OpenCL Convolutional Neural Networks on OpenCL on Intel & NVidia & AMD & Mali GPUs for macOS & GNU/Linux & Windows & FreeBSD
http://pjreddie.com/darknet/
Other
185 stars 31 forks source link

Can it be installed on FreeBSD 13.1? #79

Closed rajhlinux closed 1 year ago

rajhlinux commented 1 year ago

Hello,

can this project be installed on FreeBSD 13.1?

Thanks.

Edit:

Right at 98% build completion, I get this error:

[ 98%] Building C object CMakeFiles/darknet.dir/examples/darknet.c.o
[ 98%] Building C object CMakeFiles/darknet_s.dir/src/maxpool_layer_kernels.c.o
In file included from /usr/local/lib/gcc11/include/c++/string:56,
                 from /usr/local/lib/gcc11/include/c++/stdexcept:39,
                 from /usr/local/include/fmt/format.h:40,
                 from /usr/include/xlocale.h:39,
                 from /usr/local/lib/gcc11/include/c++/x86_64-portbld-freebsd13.0/bits/c++locale.h:43,
                 from /usr/local/lib/gcc11/include/c++/bits/localefwd.h:40,
                 from /usr/local/lib/gcc11/include/c++/ios:41,
                 from /usr/local/lib/gcc11/include/c++/ostream:38,
                 from /usr/local/lib/gcc11/include/c++/iostream:39,
                 from /home/user/darknet/src/image_opencv.cpp:6:
/usr/local/lib/gcc11/include/c++/bits/basic_string.tcc: In function 'std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&)':
/usr/local/lib/gcc11/include/c++/bits/basic_string.tcc:1493:15: error: 'ctype' does not name a type
 1493 |       typedef ctype<_CharT>                             __ctype_type;
      |               ^~~~~
compilation terminated due to -Wfatal-errors.
--- CMakeFiles/darknet_l.dir/src/image_opencv.cpp.o ---
*** [CMakeFiles/darknet_l.dir/src/image_opencv.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/darknet/build
1 error

make[2]: stopped in /usr/home/user/darknet/build
--- CMakeFiles/darknet_l.dir/all ---
*** [CMakeFiles/darknet_l.dir/all] Error code 2

make[1]: stopped in /usr/home/user/darknet/build
--- CMakeFiles/darknet_s.dir/all ---
*** [CMakeFiles/darknet_s.dir/all] Error code 6

make[1]: stopped in /usr/home/user/darknet/build
In file included from /usr/local/lib/gcc11/include/c++/string:56,
                 from /usr/local/lib/gcc11/include/c++/stdexcept:39,
                 from /usr/local/include/fmt/format.h:40,
                 from /usr/include/xlocale.h:39,
                 from /usr/local/lib/gcc11/include/c++/x86_64-portbld-freebsd13.0/bits/c++locale.h:43,
                 from /usr/local/lib/gcc11/include/c++/bits/localefwd.h:40,
                 from /usr/local/lib/gcc11/include/c++/ios:41,
                 from /usr/local/lib/gcc11/include/c++/ostream:38,
                 from /usr/local/lib/gcc11/include/c++/iostream:39,
                 from /home/user/darknet/src/image_opencv.cpp:6:
/usr/local/lib/gcc11/include/c++/bits/basic_string.tcc: In function 'std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&)':
/usr/local/lib/gcc11/include/c++/bits/basic_string.tcc:1493:15: error: 'ctype' does not name a type
 1493 |       typedef ctype<_CharT>                             __ctype_type;
      |               ^~~~~
compilation terminated due to -Wfatal-errors.
--- CMakeFiles/darknet.dir/src/image_opencv.cpp.o ---
*** [CMakeFiles/darknet.dir/src/image_opencv.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/darknet/build
1 error

make[2]: stopped in /usr/home/user/darknet/build
--- CMakeFiles/darknet.dir/all ---
*** [CMakeFiles/darknet.dir/all] Error code 2

make[1]: stopped in /usr/home/user/darknet/build
3 errors

make[1]: stopped in /usr/home/user/darknet/build
*** [all] Error code 2

make: stopped in /usr/home/user/darknet/build
1 error

make: stopped in /usr/home/user/darknet/build
rajhlinux commented 1 year ago

Alright I was able to solve that error, it was because I for some reason I needed to have the "fmt" header file included into the xlocale.h file previously for another git project. The compiler kept throwing error that I needed to include "format.h" into "xlocale.h". I did so and everything went well, but for this git project seems like its not good.

So I had to remove the fmt header file from xlocale.h and did the build again.

It seems like the build went 100% completion but get an error afterwards:

[ 98%] Building C object CMakeFiles/darknet.dir/src/maxpool_layer_kernels.c.o
[ 98%] Building C object CMakeFiles/darknet.dir/src/opencl.c.o
[ 98%] Building CXX object CMakeFiles/darknet.dir/src/image_opencv.cpp.o
[ 99%] Building C object CMakeFiles/darknet.dir/examples/darknet.c.o
[100%] Linking CXX static library libdarknet_s.a
[100%] Built target darknet_s
[100%] Linking CXX shared library libdarknet_l.so
[100%] Built target darknet_l
[100%] Linking CXX executable darknet
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image.c.o: in function `draw_ddetections':
/home/user/darknet/src/image.c:540: undefined reference to `gcvt'
/usr/local/bin/ld: /home/user/darknet/src/image.c:612: undefined reference to `gcvt'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image.c.o: in function `draw_detections':
/home/user/darknet/src/image.c:643: undefined reference to `gcvt'
/usr/local/bin/ld: /home/user/darknet/src/image.c:707: undefined reference to `gcvt'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image.c.o: in function `draw_detections_y4':
/home/user/darknet/src/image.c:757: undefined reference to `gcvt'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image.c.o:/home/user/darknet/src/image.c:766: more undefined references to `gcvt' follow
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `open_video_stream':
/home/user/darknet/src/image_opencv.cpp:163: undefined reference to `cv::VideoCapture::VideoCapture(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `show_image_frame_cv':
/home/user/darknet/src/image_opencv.cpp:181: undefined reference to `cv::imshow(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, cv::_InputArray const&)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `make_window_cv':
/home/user/darknet/src/image_opencv.cpp:189: undefined reference to `cv::namedWindow(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: /home/user/darknet/src/image_opencv.cpp:191: undefined reference to `cv::setWindowProperty(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, double)'
/usr/local/bin/ld: /home/user/darknet/src/image_opencv.cpp:193: undefined reference to `cv::resizeWindow(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, int)'
/usr/local/bin/ld: /home/user/darknet/src/image_opencv.cpp:194: undefined reference to `cv::moveWindow(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `cv_capture_from_file':
/home/user/darknet/src/image_opencv.cpp:256: undefined reference to `cv::VideoCapture::VideoCapture(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `is_invalid_file_to_imread_cv':
/home/user/darknet/src/image_opencv.cpp:370: undefined reference to `cv::imread(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `load_image_cv':
/home/user/darknet/src/image_opencv.cpp:395: undefined reference to `cv::imread(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `save_image_jpg_cv':
/home/user/darknet/src/image_opencv.cpp:462: undefined reference to `cv::imwrite(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, cv::_InputArray const&, std::vector<int, std::allocator<int> > const&)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `mark_image_and_save_cv':
/home/user/darknet/src/image_opencv.cpp:247: undefined reference to `cv::imwrite(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, cv::_InputArray const&, std::vector<int, std::allocator<int> > const&)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/examples/detector.c.o: in function `test_ddetector':
/home/user/darknet/examples/detector.c:756: undefined reference to `empty'
collect2: error: ld returned 1 exit status
--- darknet ---
*** [darknet] Error code 1

make[2]: stopped in /usr/home/user/darknet/build
1 error

make[2]: stopped in /usr/home/user/darknet/build
--- CMakeFiles/darknet.dir/all ---
*** [CMakeFiles/darknet.dir/all] Error code 2

make[1]: stopped in /usr/home/user/darknet/build
1 error

make[1]: stopped in /usr/home/user/darknet/build
*** [all] Error code 2

make: stopped in /usr/home/user/darknet/build
1 error

make: stopped in /usr/home/user/darknet/build
rajhlinux commented 1 year ago

Alright, so I was able replace the gcvt function with sprintf in the file located at: darknet/src/image.c

Since gcvt function does not exist in FreeBSD OS (which I assume).

Now I do not get any gcvt errors however I do not know how to resolve the error for opencv undefined references. Here is what I get now for errors during the end linking stage after 100% compilation:

Consolidate compiler generated dependencies of target darknet
Consolidate compiler generated dependencies of target darknet_s
Consolidate compiler generated dependencies of target darknet_l
[ 34%] Built target darknet_s
[ 51%] Linking CXX executable darknet
[ 67%] Built target darknet_l
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `open_video_stream':
/home/user/darknet/src/image_opencv.cpp:165: undefined reference to `cv::VideoCapture::VideoCapture(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `show_image_frame_cv':
/home/user/darknet/src/image_opencv.cpp:183: undefined reference to `cv::imshow(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, cv::_InputArray const&)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `make_window_cv':
/home/user/darknet/src/image_opencv.cpp:191: undefined reference to `cv::namedWindow(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: /home/user/darknet/src/image_opencv.cpp:193: undefined reference to `cv::setWindowProperty(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, double)'
/usr/local/bin/ld: /home/user/darknet/src/image_opencv.cpp:195: undefined reference to `cv::resizeWindow(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, int)'
/usr/local/bin/ld: /home/user/darknet/src/image_opencv.cpp:196: undefined reference to `cv::moveWindow(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `cv_capture_from_file':
/home/user/darknet/src/image_opencv.cpp:258: undefined reference to `cv::VideoCapture::VideoCapture(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `is_invalid_file_to_imread_cv':
/home/user/darknet/src/image_opencv.cpp:372: undefined reference to `cv::imread(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `load_image_cv':
/home/user/darknet/src/image_opencv.cpp:397: undefined reference to `cv::imread(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `save_image_jpg_cv':
/home/user/darknet/src/image_opencv.cpp:464: undefined reference to `cv::imwrite(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, cv::_InputArray const&, std::vector<int, std::allocator<int> > const&)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/src/image_opencv.cpp.o: in function `mark_image_and_save_cv':
/home/user/darknet/src/image_opencv.cpp:249: undefined reference to `cv::imwrite(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, cv::_InputArray const&, std::vector<int, std::allocator<int> > const&)'
/usr/local/bin/ld: CMakeFiles/darknet.dir/examples/detector.c.o: in function `test_ddetector':
/home/user/darknet/examples/detector.c:756: undefined reference to `empty'
collect2: error: ld returned 1 exit status
--- darknet ---
*** [darknet] Error code 1

make[2]: stopped in /usr/home/user/darknet/build
1 error

make[2]: stopped in /usr/home/user/darknet/build
--- CMakeFiles/darknet.dir/all ---
*** [CMakeFiles/darknet.dir/all] Error code 2

make[1]: stopped in /usr/home/user/darknet/build
1 error

make[1]: stopped in /usr/home/user/darknet/build
*** [all] Error code 2

make: stopped in /usr/home/user/darknet/build

make: stopped in /usr/home/user/darknet/build

Thanks.

sowson commented 1 year ago

You do not have OpenCV installed, I presumed ;-). Do you?

rajhlinux commented 1 year ago

Hello Sowson, thanks for replying and providing this excellent project. :smiley:

I think FreeBSD users finally have an implementation of obtaining GPU acceleration for machine vision thanks to your Darknet OpenCL project. FreeBSD users usually use AMD GPUs since they are open source and allows easy portability.

OpenCV is installed, here are the details of the OpenCV installation, I have compiled it from the FreeBSD ports distro:

pkg info opencv:

opencv-4.6.0
Name           : opencv
Version        : 4.6.0
Installed on   : Sat Sep 17 00:34:10 2022 EDT
Origin         : graphics/opencv
Architecture   : FreeBSD:13:amd64
Prefix         : /usr/local
Categories     : graphics
Licenses       : BSD3CLAUSE
Maintainer     : desktop@FreeBSD.org
WWW            : https://www.opencv.org/
Comment        : Open Source Computer Vision library
Options        :
        ATLAS          : off
        DC1394         : on
        EIGEN          : on
        FFMPEG         : on
        GDAL           : on
        GDCM           : on
        GPHOTO2        : on
        GSTREAMER      : on
        GTK3           : on
        HARDENING      : on
        JASPER         : off
        JAVA           : on
        JPEG           : on
        LTO            : on
        NOBLAS         : off
        OPENBLAS       : on
        OPENCL         : on
        OPENEXR        : on
        OPENJPEG       : on
        PATENTED       : on
        PNG            : on
        PROTOBUF       : on
        PYTHON         : on
        TBB            : on
        TESSERACT      : on
        TIFF           : on
        V4L            : on
        VTK            : on
        VULKAN         : on
        WEBP           : on
        XINE           : off
Shared Libs required:
        libwebp.so.7
        libvtkRenderingOpenGL2-9.1.so.1
        libvtkRenderingLOD-9.1.so.1
        libvtkRenderingFreeType-9.1.so.1
        libvtkRenderingCore-9.1.so.1
        libvtkInteractionStyle-9.1.so.1
        libvtkImagingCore-9.1.so.1
        libvtkIOPLY-9.1.so.1
        libvtkIOImage-9.1.so.1
        libvtkIOGeometry-9.1.so.1
        libvtkIOExport-9.1.so.1
        libvtkIOCore-9.1.so.1
        libvtkFiltersTexture-9.1.so.1
        libvtkFiltersSources-9.1.so.1
        libvtkFiltersGeneral-9.1.so.1
        libvtkFiltersExtraction-9.1.so.1
        libvtkFiltersCore-9.1.so.1
        libvtkCommonTransforms-9.1.so.1
        libvtkCommonMath-9.1.so.1
        libvtkCommonExecutionModel-9.1.so.1
        libvtkCommonDataModel-9.1.so.1
        libvtkCommonCore-9.1.so.1
        libtiff.so.5
        libtesseract.so.5
        libtbb.so.12
        libswscale.so.5
        libpng16.so.16
        libopenjp2.so.7
        libopenblas.so.0
        libjpeg.so.8
        libhdf5.so.200
        libharfbuzz.so.0
        libgtk-3.so.0
        libgstvideo-1.0.so.0
        libgstriff-1.0.so.0
        libgstreamer-1.0.so.0
        libgstpbutils-1.0.so.0
        libgstbase-1.0.so.0
        libgstaudio-1.0.so.0
        libgstapp-1.0.so.0
        libgphoto2_port.so.12
        libgphoto2.so.6
        libgobject-2.0.so.0
        libglog.so.1
        libglib-2.0.so.0
        libgdk_pixbuf-2.0.so.0
        libgdk-3.so.0
        libgdcmMSFF.so.3.0
        libgdcmDSED.so.3.0
        libgdal.so.3
        libfreetype.so.6
        libdc1394.so.25
        libcairo.so.2
        libavutil.so.56
        libavformat.so.58
        libavcodec.so.58
        libOpenEXR-3_1.so.30
Shared Libs provided:
        libopencv_xphoto.so.406
        libopencv_xobjdetect.so.406
        libopencv_ximgproc.so.406
        libopencv_xfeatures2d.so.406
        libopencv_wechat_qrcode.so.406
        libopencv_viz.so.406
        libopencv_videostab.so.406
        libopencv_videoio.so.406
        libopencv_video.so.406
        libopencv_tracking.so.406
        libopencv_text.so.406
        libopencv_surface_matching.so.406
        libopencv_superres.so.406
        libopencv_structured_light.so.406
        libopencv_stitching.so.406
        libopencv_stereo.so.406
        libopencv_shape.so.406
        libopencv_sfm.so.406
        libopencv_saliency.so.406
        libopencv_rgbd.so.406
        libopencv_reg.so.406
        libopencv_rapid.so.406
        libopencv_quality.so.406
        libopencv_plot.so.406
        libopencv_photo.so.406
        libopencv_phase_unwrapping.so.406
        libopencv_optflow.so.406
        libopencv_objdetect.so.406
        libopencv_ml.so.406
        libopencv_mcc.so.406
        libopencv_line_descriptor.so.406
        libopencv_intensity_transform.so.406
        libopencv_imgproc.so.406
        libopencv_imgcodecs.so.406
        libopencv_img_hash.so.406
        libopencv_highgui.so.406
        libopencv_hfs.so.406
        libopencv_hdf.so.406
        libopencv_gapi.so.406
        libopencv_fuzzy.so.406
        libopencv_freetype.so.406
        libopencv_flann.so.406
        libopencv_features2d.so.406
        libopencv_face.so.406
        libopencv_dpm.so.406
        libopencv_dnn_superres.so.406
        libopencv_dnn_objdetect.so.406
        libopencv_dnn.so.406
        libopencv_datasets.so.406
        libopencv_core.so.406
        libopencv_ccalib.so.406
        libopencv_calib3d.so.406
        libopencv_bioinspired.so.406
        libopencv_bgsegm.so.406
        libopencv_barcode.so.406
        libopencv_aruco.so.406
        libopencv_alphamat.so.406
Annotations    :
        FreeBSD_version: 1301000
        cpe            : cpe:2.3:a:opencv:opencv:4.6.0:::::freebsd13:x64
Flat size      : 69.0MiB
Description    :
OpenCV (Open Source Computer Vision Library) is an open source
computer vision and machine learning software library.  OpenCV was
built to provide a common infrastructure for computer vision
applications and to accelerate the use of machine perception in the
commercial products.  Being a BSD-licensed product, OpenCV makes it
easy for businesses to utilize and modify the code.

Here are the OpenCV installation files, installed into the system:

pkg info -lx opencv:

opencv-4.6.0:

    /usr/local/bin/opencv_annotation
    /usr/local/bin/opencv_interactive-calibration
    /usr/local/bin/opencv_model_diagnostics
    /usr/local/bin/opencv_version
    /usr/local/bin/opencv_visualisation
    /usr/local/bin/opencv_waldboost_detector
    /usr/local/include/opencv4/opencv2/alphamat.hpp
    /usr/local/include/opencv4/opencv2/aruco.hpp
    /usr/local/include/opencv4/opencv2/aruco/charuco.hpp
    /usr/local/include/opencv4/opencv2/aruco/dictionary.hpp
    /usr/local/include/opencv4/opencv2/barcode.hpp
    /usr/local/include/opencv4/opencv2/bgsegm.hpp
    /usr/local/include/opencv4/opencv2/bioinspired.hpp
    /usr/local/include/opencv4/opencv2/bioinspired/bioinspired.hpp
    /usr/local/include/opencv4/opencv2/bioinspired/retina.hpp
    /usr/local/include/opencv4/opencv2/bioinspired/retinafasttonemapping.hpp
    /usr/local/include/opencv4/opencv2/bioinspired/transientareassegmentationmodule.hpp
    /usr/local/include/opencv4/opencv2/calib3d.hpp
    /usr/local/include/opencv4/opencv2/calib3d/calib3d.hpp
    /usr/local/include/opencv4/opencv2/calib3d/calib3d_c.h
    /usr/local/include/opencv4/opencv2/ccalib.hpp
    /usr/local/include/opencv4/opencv2/ccalib/multicalib.hpp
    /usr/local/include/opencv4/opencv2/ccalib/omnidir.hpp
    /usr/local/include/opencv4/opencv2/ccalib/randpattern.hpp
    /usr/local/include/opencv4/opencv2/core.hpp
    /usr/local/include/opencv4/opencv2/core/affine.hpp
    /usr/local/include/opencv4/opencv2/core/async.hpp
    /usr/local/include/opencv4/opencv2/core/base.hpp
    /usr/local/include/opencv4/opencv2/core/bindings_utils.hpp
    /usr/local/include/opencv4/opencv2/core/bufferpool.hpp
    /usr/local/include/opencv4/opencv2/core/check.hpp
    /usr/local/include/opencv4/opencv2/core/core.hpp
    /usr/local/include/opencv4/opencv2/core/core_c.h
    /usr/local/include/opencv4/opencv2/core/cuda.hpp
    /usr/local/include/opencv4/opencv2/core/cuda.inl.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/block.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/border_interpolate.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/color.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/common.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/datamov_utils.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/detail/color_detail.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/detail/reduce.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/detail/reduce_key_val.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/detail/transform_detail.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/detail/type_traits_detail.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/detail/vec_distance_detail.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/dynamic_smem.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/emulation.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/filters.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/funcattrib.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/functional.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/limits.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/reduce.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/saturate_cast.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/scan.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/simd_functions.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/transform.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/type_traits.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/utility.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/vec_distance.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/vec_math.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/vec_traits.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/warp.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/warp_reduce.hpp
    /usr/local/include/opencv4/opencv2/core/cuda/warp_shuffle.hpp
    /usr/local/include/opencv4/opencv2/core/cuda_stream_accessor.hpp
    /usr/local/include/opencv4/opencv2/core/cuda_types.hpp
    /usr/local/include/opencv4/opencv2/core/cv_cpu_dispatch.h
    /usr/local/include/opencv4/opencv2/core/cv_cpu_helper.h
    /usr/local/include/opencv4/opencv2/core/cvdef.h
    /usr/local/include/opencv4/opencv2/core/cvstd.hpp
    /usr/local/include/opencv4/opencv2/core/cvstd.inl.hpp
    /usr/local/include/opencv4/opencv2/core/cvstd_wrapper.hpp
    /usr/local/include/opencv4/opencv2/core/detail/async_promise.hpp
    /usr/local/include/opencv4/opencv2/core/detail/dispatch_helper.impl.hpp
    /usr/local/include/opencv4/opencv2/core/detail/exception_ptr.hpp
    /usr/local/include/opencv4/opencv2/core/directx.hpp
    /usr/local/include/opencv4/opencv2/core/dualquaternion.hpp
    /usr/local/include/opencv4/opencv2/core/dualquaternion.inl.hpp
    /usr/local/include/opencv4/opencv2/core/eigen.hpp
    /usr/local/include/opencv4/opencv2/core/fast_math.hpp
    /usr/local/include/opencv4/opencv2/core/hal/hal.hpp
    /usr/local/include/opencv4/opencv2/core/hal/interface.h
    /usr/local/include/opencv4/opencv2/core/hal/intrin.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_avx.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_avx512.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_cpp.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_forward.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_msa.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_neon.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_rvv.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_rvv071.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_sse.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_sse_em.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_vsx.hpp
    /usr/local/include/opencv4/opencv2/core/hal/intrin_wasm.hpp
    /usr/local/include/opencv4/opencv2/core/hal/msa_macros.h
    /usr/local/include/opencv4/opencv2/core/hal/simd_utils.impl.hpp
    /usr/local/include/opencv4/opencv2/core/mat.hpp
    /usr/local/include/opencv4/opencv2/core/mat.inl.hpp
    /usr/local/include/opencv4/opencv2/core/matx.hpp
    /usr/local/include/opencv4/opencv2/core/neon_utils.hpp
    /usr/local/include/opencv4/opencv2/core/ocl.hpp
    /usr/local/include/opencv4/opencv2/core/ocl_genbase.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/ocl_defs.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/opencl_info.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/opencl_svm.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/autogenerated/opencl_clblas.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/autogenerated/opencl_clfft.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_clblas.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_clfft.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_core.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_gl.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_svm_20.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp
    /usr/local/include/opencv4/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp
    /usr/local/include/opencv4/opencv2/core/opengl.hpp
    /usr/local/include/opencv4/opencv2/core/operations.hpp
    /usr/local/include/opencv4/opencv2/core/optim.hpp
    /usr/local/include/opencv4/opencv2/core/ovx.hpp
    /usr/local/include/opencv4/opencv2/core/parallel/backend/parallel_for.openmp.hpp
    /usr/local/include/opencv4/opencv2/core/parallel/backend/parallel_for.tbb.hpp
    /usr/local/include/opencv4/opencv2/core/parallel/parallel_backend.hpp
    /usr/local/include/opencv4/opencv2/core/persistence.hpp
    /usr/local/include/opencv4/opencv2/core/quaternion.hpp
    /usr/local/include/opencv4/opencv2/core/quaternion.inl.hpp
    /usr/local/include/opencv4/opencv2/core/saturate.hpp
    /usr/local/include/opencv4/opencv2/core/simd_intrinsics.hpp
    /usr/local/include/opencv4/opencv2/core/softfloat.hpp
    /usr/local/include/opencv4/opencv2/core/sse_utils.hpp
    /usr/local/include/opencv4/opencv2/core/traits.hpp
    /usr/local/include/opencv4/opencv2/core/types.hpp
    /usr/local/include/opencv4/opencv2/core/types_c.h
    /usr/local/include/opencv4/opencv2/core/utility.hpp
    /usr/local/include/opencv4/opencv2/core/utils/allocator_stats.hpp
    /usr/local/include/opencv4/opencv2/core/utils/allocator_stats.impl.hpp
    /usr/local/include/opencv4/opencv2/core/utils/filesystem.hpp
    /usr/local/include/opencv4/opencv2/core/utils/fp_control_utils.hpp
    /usr/local/include/opencv4/opencv2/core/utils/instrumentation.hpp
    /usr/local/include/opencv4/opencv2/core/utils/logger.defines.hpp
    /usr/local/include/opencv4/opencv2/core/utils/logger.hpp
    /usr/local/include/opencv4/opencv2/core/utils/logtag.hpp
    /usr/local/include/opencv4/opencv2/core/utils/tls.hpp
    /usr/local/include/opencv4/opencv2/core/utils/trace.hpp
    /usr/local/include/opencv4/opencv2/core/va_intel.hpp
    /usr/local/include/opencv4/opencv2/core/version.hpp
    /usr/local/include/opencv4/opencv2/core/vsx_utils.hpp
    /usr/local/include/opencv4/opencv2/core_detect.hpp
    /usr/local/include/opencv4/opencv2/cvconfig.h
    /usr/local/include/opencv4/opencv2/datasets/ar_hmdb.hpp
    /usr/local/include/opencv4/opencv2/datasets/ar_sports.hpp
    /usr/local/include/opencv4/opencv2/datasets/dataset.hpp
    /usr/local/include/opencv4/opencv2/datasets/fr_adience.hpp
    /usr/local/include/opencv4/opencv2/datasets/fr_lfw.hpp
    /usr/local/include/opencv4/opencv2/datasets/gr_chalearn.hpp
    /usr/local/include/opencv4/opencv2/datasets/gr_skig.hpp
    /usr/local/include/opencv4/opencv2/datasets/hpe_humaneva.hpp
    /usr/local/include/opencv4/opencv2/datasets/hpe_parse.hpp
    /usr/local/include/opencv4/opencv2/datasets/ir_affine.hpp
    /usr/local/include/opencv4/opencv2/datasets/ir_robot.hpp
    /usr/local/include/opencv4/opencv2/datasets/is_bsds.hpp
    /usr/local/include/opencv4/opencv2/datasets/is_weizmann.hpp
    /usr/local/include/opencv4/opencv2/datasets/msm_epfl.hpp
    /usr/local/include/opencv4/opencv2/datasets/msm_middlebury.hpp
    /usr/local/include/opencv4/opencv2/datasets/or_imagenet.hpp
    /usr/local/include/opencv4/opencv2/datasets/or_mnist.hpp
    /usr/local/include/opencv4/opencv2/datasets/or_pascal.hpp
    /usr/local/include/opencv4/opencv2/datasets/or_sun.hpp
    /usr/local/include/opencv4/opencv2/datasets/pd_caltech.hpp
    /usr/local/include/opencv4/opencv2/datasets/pd_inria.hpp
    /usr/local/include/opencv4/opencv2/datasets/slam_kitti.hpp
    /usr/local/include/opencv4/opencv2/datasets/slam_tumindoor.hpp
    /usr/local/include/opencv4/opencv2/datasets/sr_bsds.hpp
    /usr/local/include/opencv4/opencv2/datasets/sr_div2k.hpp
    /usr/local/include/opencv4/opencv2/datasets/sr_general100.hpp
    /usr/local/include/opencv4/opencv2/datasets/tr_chars.hpp
    /usr/local/include/opencv4/opencv2/datasets/tr_icdar.hpp
    /usr/local/include/opencv4/opencv2/datasets/tr_svt.hpp
    /usr/local/include/opencv4/opencv2/datasets/track_alov.hpp
    /usr/local/include/opencv4/opencv2/datasets/track_vot.hpp
    /usr/local/include/opencv4/opencv2/datasets/util.hpp
    /usr/local/include/opencv4/opencv2/dnn.hpp
    /usr/local/include/opencv4/opencv2/dnn/all_layers.hpp
    /usr/local/include/opencv4/opencv2/dnn/dict.hpp
    /usr/local/include/opencv4/opencv2/dnn/dnn.hpp
    /usr/local/include/opencv4/opencv2/dnn/dnn.inl.hpp
    /usr/local/include/opencv4/opencv2/dnn/layer.details.hpp
    /usr/local/include/opencv4/opencv2/dnn/layer.hpp
    /usr/local/include/opencv4/opencv2/dnn/shape_utils.hpp
    /usr/local/include/opencv4/opencv2/dnn/utils/debug_utils.hpp
    /usr/local/include/opencv4/opencv2/dnn/utils/inference_engine.hpp
    /usr/local/include/opencv4/opencv2/dnn/version.hpp
    /usr/local/include/opencv4/opencv2/dnn_superres.hpp
    /usr/local/include/opencv4/opencv2/dpm.hpp
    /usr/local/include/opencv4/opencv2/face.hpp
    /usr/local/include/opencv4/opencv2/face/bif.hpp
    /usr/local/include/opencv4/opencv2/face/face_alignment.hpp
    /usr/local/include/opencv4/opencv2/face/facemark.hpp
    /usr/local/include/opencv4/opencv2/face/facemarkAAM.hpp
    /usr/local/include/opencv4/opencv2/face/facemarkLBF.hpp
    /usr/local/include/opencv4/opencv2/face/facemark_train.hpp
    /usr/local/include/opencv4/opencv2/face/facerec.hpp
    /usr/local/include/opencv4/opencv2/face/mace.hpp
    /usr/local/include/opencv4/opencv2/face/predict_collector.hpp
    /usr/local/include/opencv4/opencv2/features2d.hpp
    /usr/local/include/opencv4/opencv2/features2d/features2d.hpp
    /usr/local/include/opencv4/opencv2/features2d/hal/interface.h
    /usr/local/include/opencv4/opencv2/flann.hpp
    /usr/local/include/opencv4/opencv2/flann/all_indices.h
    /usr/local/include/opencv4/opencv2/flann/allocator.h
    /usr/local/include/opencv4/opencv2/flann/any.h
    /usr/local/include/opencv4/opencv2/flann/autotuned_index.h
    /usr/local/include/opencv4/opencv2/flann/composite_index.h
    /usr/local/include/opencv4/opencv2/flann/config.h
    /usr/local/include/opencv4/opencv2/flann/defines.h
    /usr/local/include/opencv4/opencv2/flann/dist.h
    /usr/local/include/opencv4/opencv2/flann/dummy.h
    /usr/local/include/opencv4/opencv2/flann/dynamic_bitset.h
    /usr/local/include/opencv4/opencv2/flann/flann.hpp
    /usr/local/include/opencv4/opencv2/flann/flann_base.hpp
    /usr/local/include/opencv4/opencv2/flann/general.h
    /usr/local/include/opencv4/opencv2/flann/ground_truth.h
    /usr/local/include/opencv4/opencv2/flann/hdf5.h
    /usr/local/include/opencv4/opencv2/flann/heap.h
    /usr/local/include/opencv4/opencv2/flann/hierarchical_clustering_index.h
    /usr/local/include/opencv4/opencv2/flann/index_testing.h
    /usr/local/include/opencv4/opencv2/flann/kdtree_index.h
    /usr/local/include/opencv4/opencv2/flann/kdtree_single_index.h
    /usr/local/include/opencv4/opencv2/flann/kmeans_index.h
    /usr/local/include/opencv4/opencv2/flann/linear_index.h
    /usr/local/include/opencv4/opencv2/flann/logger.h
    /usr/local/include/opencv4/opencv2/flann/lsh_index.h
    /usr/local/include/opencv4/opencv2/flann/lsh_table.h
    /usr/local/include/opencv4/opencv2/flann/matrix.h
    /usr/local/include/opencv4/opencv2/flann/miniflann.hpp
    /usr/local/include/opencv4/opencv2/flann/nn_index.h
    /usr/local/include/opencv4/opencv2/flann/object_factory.h
    /usr/local/include/opencv4/opencv2/flann/params.h
    /usr/local/include/opencv4/opencv2/flann/random.h
    /usr/local/include/opencv4/opencv2/flann/result_set.h
    /usr/local/include/opencv4/opencv2/flann/sampling.h
    /usr/local/include/opencv4/opencv2/flann/saving.h
    /usr/local/include/opencv4/opencv2/flann/simplex_downhill.h
    /usr/local/include/opencv4/opencv2/flann/timer.h
    /usr/local/include/opencv4/opencv2/freetype.hpp
    /usr/local/include/opencv4/opencv2/fuzzy.hpp
    /usr/local/include/opencv4/opencv2/fuzzy/fuzzy_F0_math.hpp
    /usr/local/include/opencv4/opencv2/fuzzy/fuzzy_F1_math.hpp
    /usr/local/include/opencv4/opencv2/fuzzy/fuzzy_image.hpp
    /usr/local/include/opencv4/opencv2/fuzzy/types.hpp
    /usr/local/include/opencv4/opencv2/gapi.hpp
    /usr/local/include/opencv4/opencv2/gapi/core.hpp
    /usr/local/include/opencv4/opencv2/gapi/cpu/core.hpp
    /usr/local/include/opencv4/opencv2/gapi/cpu/gcpukernel.hpp
    /usr/local/include/opencv4/opencv2/gapi/cpu/imgproc.hpp
    /usr/local/include/opencv4/opencv2/gapi/cpu/stereo.hpp
    /usr/local/include/opencv4/opencv2/gapi/cpu/video.hpp
    /usr/local/include/opencv4/opencv2/gapi/fluid/core.hpp
    /usr/local/include/opencv4/opencv2/gapi/fluid/gfluidbuffer.hpp
    /usr/local/include/opencv4/opencv2/gapi/fluid/gfluidkernel.hpp
    /usr/local/include/opencv4/opencv2/gapi/fluid/imgproc.hpp
    /usr/local/include/opencv4/opencv2/gapi/garg.hpp
    /usr/local/include/opencv4/opencv2/gapi/garray.hpp
    /usr/local/include/opencv4/opencv2/gapi/gasync_context.hpp
    /usr/local/include/opencv4/opencv2/gapi/gcall.hpp
    /usr/local/include/opencv4/opencv2/gapi/gcommon.hpp
    /usr/local/include/opencv4/opencv2/gapi/gcompiled.hpp
    /usr/local/include/opencv4/opencv2/gapi/gcompiled_async.hpp
    /usr/local/include/opencv4/opencv2/gapi/gcompoundkernel.hpp
    /usr/local/include/opencv4/opencv2/gapi/gcomputation.hpp
    /usr/local/include/opencv4/opencv2/gapi/gcomputation_async.hpp
    /usr/local/include/opencv4/opencv2/gapi/gframe.hpp
    /usr/local/include/opencv4/opencv2/gapi/gkernel.hpp
    /usr/local/include/opencv4/opencv2/gapi/gmat.hpp
    /usr/local/include/opencv4/opencv2/gapi/gmetaarg.hpp
    /usr/local/include/opencv4/opencv2/gapi/gopaque.hpp
    /usr/local/include/opencv4/opencv2/gapi/gproto.hpp
    /usr/local/include/opencv4/opencv2/gapi/gpu/core.hpp
    /usr/local/include/opencv4/opencv2/gapi/gpu/ggpukernel.hpp
    /usr/local/include/opencv4/opencv2/gapi/gpu/imgproc.hpp
    /usr/local/include/opencv4/opencv2/gapi/gscalar.hpp
    /usr/local/include/opencv4/opencv2/gapi/gstreaming.hpp
    /usr/local/include/opencv4/opencv2/gapi/gtransform.hpp
    /usr/local/include/opencv4/opencv2/gapi/gtype_traits.hpp
    /usr/local/include/opencv4/opencv2/gapi/gtyped.hpp
    /usr/local/include/opencv4/opencv2/gapi/imgproc.hpp
    /usr/local/include/opencv4/opencv2/gapi/infer.hpp
    /usr/local/include/opencv4/opencv2/gapi/infer/bindings_ie.hpp
    /usr/local/include/opencv4/opencv2/gapi/infer/ie.hpp
    /usr/local/include/opencv4/opencv2/gapi/infer/onnx.hpp
    /usr/local/include/opencv4/opencv2/gapi/infer/parsers.hpp
    /usr/local/include/opencv4/opencv2/gapi/media.hpp
    /usr/local/include/opencv4/opencv2/gapi/oak/infer.hpp
    /usr/local/include/opencv4/opencv2/gapi/oak/oak.hpp
    /usr/local/include/opencv4/opencv2/gapi/ocl/core.hpp
    /usr/local/include/opencv4/opencv2/gapi/ocl/goclkernel.hpp
    /usr/local/include/opencv4/opencv2/gapi/ocl/imgproc.hpp
    /usr/local/include/opencv4/opencv2/gapi/opencv_includes.hpp
    /usr/local/include/opencv4/opencv2/gapi/operators.hpp
    /usr/local/include/opencv4/opencv2/gapi/own/assert.hpp
    /usr/local/include/opencv4/opencv2/gapi/own/convert.hpp
    /usr/local/include/opencv4/opencv2/gapi/own/cvdefs.hpp
    /usr/local/include/opencv4/opencv2/gapi/own/exports.hpp
    /usr/local/include/opencv4/opencv2/gapi/own/mat.hpp
    /usr/local/include/opencv4/opencv2/gapi/own/saturate.hpp
    /usr/local/include/opencv4/opencv2/gapi/own/scalar.hpp
    /usr/local/include/opencv4/opencv2/gapi/own/types.hpp
    /usr/local/include/opencv4/opencv2/gapi/plaidml/core.hpp
    /usr/local/include/opencv4/opencv2/gapi/plaidml/gplaidmlkernel.hpp
    /usr/local/include/opencv4/opencv2/gapi/plaidml/plaidml.hpp
    /usr/local/include/opencv4/opencv2/gapi/python/python.hpp
    /usr/local/include/opencv4/opencv2/gapi/render.hpp
    /usr/local/include/opencv4/opencv2/gapi/render/render.hpp
    /usr/local/include/opencv4/opencv2/gapi/render/render_types.hpp
    /usr/local/include/opencv4/opencv2/gapi/rmat.hpp
    /usr/local/include/opencv4/opencv2/gapi/s11n.hpp
    /usr/local/include/opencv4/opencv2/gapi/s11n/base.hpp
    /usr/local/include/opencv4/opencv2/gapi/stereo.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/cap.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/desync.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/format.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/gstreamer/gstreamerpipeline.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/gstreamer/gstreamersource.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/meta.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/onevpl/accel_types.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/onevpl/cfg_params.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/onevpl/data_provider_interface.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/onevpl/device_selector_interface.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/onevpl/source.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/source.hpp
    /usr/local/include/opencv4/opencv2/gapi/streaming/sync.hpp
    /usr/local/include/opencv4/opencv2/gapi/util/any.hpp
    /usr/local/include/opencv4/opencv2/gapi/util/compiler_hints.hpp
    /usr/local/include/opencv4/opencv2/gapi/util/copy_through_move.hpp
    /usr/local/include/opencv4/opencv2/gapi/util/optional.hpp
    /usr/local/include/opencv4/opencv2/gapi/util/throw.hpp
    /usr/local/include/opencv4/opencv2/gapi/util/type_traits.hpp
    /usr/local/include/opencv4/opencv2/gapi/util/util.hpp
    /usr/local/include/opencv4/opencv2/gapi/util/variant.hpp
    /usr/local/include/opencv4/opencv2/gapi/video.hpp
    /usr/local/include/opencv4/opencv2/hdf.hpp
    /usr/local/include/opencv4/opencv2/hdf/hdf5.hpp
    /usr/local/include/opencv4/opencv2/hfs.hpp
    /usr/local/include/opencv4/opencv2/highgui.hpp
    /usr/local/include/opencv4/opencv2/highgui/highgui.hpp
    /usr/local/include/opencv4/opencv2/highgui/highgui_c.h
    /usr/local/include/opencv4/opencv2/img_hash.hpp
    /usr/local/include/opencv4/opencv2/img_hash/average_hash.hpp
    /usr/local/include/opencv4/opencv2/img_hash/block_mean_hash.hpp
    /usr/local/include/opencv4/opencv2/img_hash/color_moment_hash.hpp
    /usr/local/include/opencv4/opencv2/img_hash/img_hash_base.hpp
    /usr/local/include/opencv4/opencv2/img_hash/marr_hildreth_hash.hpp
    /usr/local/include/opencv4/opencv2/img_hash/phash.hpp
    /usr/local/include/opencv4/opencv2/img_hash/radial_variance_hash.hpp
    /usr/local/include/opencv4/opencv2/imgcodecs.hpp
    /usr/local/include/opencv4/opencv2/imgcodecs/imgcodecs.hpp
    /usr/local/include/opencv4/opencv2/imgcodecs/imgcodecs_c.h
    /usr/local/include/opencv4/opencv2/imgcodecs/ios.h
    /usr/local/include/opencv4/opencv2/imgcodecs/legacy/constants_c.h
    /usr/local/include/opencv4/opencv2/imgcodecs/macosx.h
    /usr/local/include/opencv4/opencv2/imgproc.hpp
    /usr/local/include/opencv4/opencv2/imgproc/bindings.hpp
    /usr/local/include/opencv4/opencv2/imgproc/detail/gcgraph.hpp
    /usr/local/include/opencv4/opencv2/imgproc/hal/hal.hpp
    /usr/local/include/opencv4/opencv2/imgproc/hal/interface.h
    /usr/local/include/opencv4/opencv2/imgproc/imgproc.hpp
    /usr/local/include/opencv4/opencv2/imgproc/imgproc_c.h
    /usr/local/include/opencv4/opencv2/imgproc/segmentation.hpp
    /usr/local/include/opencv4/opencv2/imgproc/types_c.h
    /usr/local/include/opencv4/opencv2/intensity_transform.hpp
    /usr/local/include/opencv4/opencv2/line_descriptor.hpp
    /usr/local/include/opencv4/opencv2/line_descriptor/descriptor.hpp
    /usr/local/include/opencv4/opencv2/mcc.hpp
    /usr/local/include/opencv4/opencv2/mcc/ccm.hpp
    /usr/local/include/opencv4/opencv2/mcc/checker_detector.hpp
    /usr/local/include/opencv4/opencv2/mcc/checker_model.hpp
    /usr/local/include/opencv4/opencv2/ml.hpp
    /usr/local/include/opencv4/opencv2/ml/ml.hpp
    /usr/local/include/opencv4/opencv2/ml/ml.inl.hpp
    /usr/local/include/opencv4/opencv2/objdetect.hpp
    /usr/local/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp
    /usr/local/include/opencv4/opencv2/objdetect/face.hpp
    /usr/local/include/opencv4/opencv2/objdetect/objdetect.hpp
    /usr/local/include/opencv4/opencv2/opencv.hpp
    /usr/local/include/opencv4/opencv2/opencv_modules.hpp
    /usr/local/include/opencv4/opencv2/optflow.hpp
    /usr/local/include/opencv4/opencv2/optflow/motempl.hpp
    /usr/local/include/opencv4/opencv2/optflow/pcaflow.hpp
    /usr/local/include/opencv4/opencv2/optflow/rlofflow.hpp
    /usr/local/include/opencv4/opencv2/optflow/sparse_matching_gpc.hpp
    /usr/local/include/opencv4/opencv2/phase_unwrapping.hpp
    /usr/local/include/opencv4/opencv2/phase_unwrapping/histogramphaseunwrapping.hpp
    /usr/local/include/opencv4/opencv2/phase_unwrapping/phase_unwrapping.hpp
    /usr/local/include/opencv4/opencv2/photo.hpp
    /usr/local/include/opencv4/opencv2/photo/cuda.hpp
    /usr/local/include/opencv4/opencv2/photo/legacy/constants_c.h
    /usr/local/include/opencv4/opencv2/photo/photo.hpp
    /usr/local/include/opencv4/opencv2/plot.hpp
    /usr/local/include/opencv4/opencv2/quality.hpp
    /usr/local/include/opencv4/opencv2/quality/quality_utils.hpp
    /usr/local/include/opencv4/opencv2/quality/qualitybase.hpp
    /usr/local/include/opencv4/opencv2/quality/qualitybrisque.hpp
    /usr/local/include/opencv4/opencv2/quality/qualitygmsd.hpp
    /usr/local/include/opencv4/opencv2/quality/qualitymse.hpp
    /usr/local/include/opencv4/opencv2/quality/qualitypsnr.hpp
    /usr/local/include/opencv4/opencv2/quality/qualityssim.hpp
    /usr/local/include/opencv4/opencv2/rapid.hpp
    /usr/local/include/opencv4/opencv2/reg/map.hpp
    /usr/local/include/opencv4/opencv2/reg/mapaffine.hpp
    /usr/local/include/opencv4/opencv2/reg/mapper.hpp
    /usr/local/include/opencv4/opencv2/reg/mappergradaffine.hpp
    /usr/local/include/opencv4/opencv2/reg/mappergradeuclid.hpp
    /usr/local/include/opencv4/opencv2/reg/mappergradproj.hpp
    /usr/local/include/opencv4/opencv2/reg/mappergradshift.hpp
    /usr/local/include/opencv4/opencv2/reg/mappergradsimilar.hpp
    /usr/local/include/opencv4/opencv2/reg/mapperpyramid.hpp
    /usr/local/include/opencv4/opencv2/reg/mapprojec.hpp
    /usr/local/include/opencv4/opencv2/reg/mapshift.hpp
    /usr/local/include/opencv4/opencv2/rgbd.hpp
    /usr/local/include/opencv4/opencv2/rgbd/colored_kinfu.hpp
    /usr/local/include/opencv4/opencv2/rgbd/depth.hpp
    /usr/local/include/opencv4/opencv2/rgbd/detail/pose_graph.hpp
    /usr/local/include/opencv4/opencv2/rgbd/dynafu.hpp
    /usr/local/include/opencv4/opencv2/rgbd/intrinsics.hpp
    /usr/local/include/opencv4/opencv2/rgbd/kinfu.hpp
    /usr/local/include/opencv4/opencv2/rgbd/large_kinfu.hpp
    /usr/local/include/opencv4/opencv2/rgbd/linemod.hpp
    /usr/local/include/opencv4/opencv2/rgbd/volume.hpp
    /usr/local/include/opencv4/opencv2/saliency.hpp
    /usr/local/include/opencv4/opencv2/saliency/saliencyBaseClasses.hpp
    /usr/local/include/opencv4/opencv2/saliency/saliencySpecializedClasses.hpp
    /usr/local/include/opencv4/opencv2/sfm.hpp
    /usr/local/include/opencv4/opencv2/sfm/conditioning.hpp
    /usr/local/include/opencv4/opencv2/sfm/fundamental.hpp
    /usr/local/include/opencv4/opencv2/sfm/io.hpp
    /usr/local/include/opencv4/opencv2/sfm/numeric.hpp
    /usr/local/include/opencv4/opencv2/sfm/projection.hpp
    /usr/local/include/opencv4/opencv2/sfm/reconstruct.hpp
    /usr/local/include/opencv4/opencv2/sfm/robust.hpp
    /usr/local/include/opencv4/opencv2/sfm/simple_pipeline.hpp
    /usr/local/include/opencv4/opencv2/sfm/triangulation.hpp
    /usr/local/include/opencv4/opencv2/shape.hpp
    /usr/local/include/opencv4/opencv2/shape/emdL1.hpp
    /usr/local/include/opencv4/opencv2/shape/hist_cost.hpp
    /usr/local/include/opencv4/opencv2/shape/shape.hpp
    /usr/local/include/opencv4/opencv2/shape/shape_distance.hpp
    /usr/local/include/opencv4/opencv2/shape/shape_transformer.hpp
    /usr/local/include/opencv4/opencv2/stereo.hpp
    /usr/local/include/opencv4/opencv2/stereo/descriptor.hpp
    /usr/local/include/opencv4/opencv2/stereo/quasi_dense_stereo.hpp
    /usr/local/include/opencv4/opencv2/stereo/stereo.hpp
    /usr/local/include/opencv4/opencv2/stitching.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/autocalib.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/blenders.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/camera.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/matchers.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/seam_finders.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/timelapsers.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/util.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/util_inl.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/warpers.hpp
    /usr/local/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp
    /usr/local/include/opencv4/opencv2/stitching/warpers.hpp
    /usr/local/include/opencv4/opencv2/structured_light.hpp
    /usr/local/include/opencv4/opencv2/structured_light/graycodepattern.hpp
    /usr/local/include/opencv4/opencv2/structured_light/sinusoidalpattern.hpp
    /usr/local/include/opencv4/opencv2/structured_light/structured_light.hpp
    /usr/local/include/opencv4/opencv2/superres.hpp
    /usr/local/include/opencv4/opencv2/superres/optical_flow.hpp
    /usr/local/include/opencv4/opencv2/surface_matching.hpp
    /usr/local/include/opencv4/opencv2/surface_matching/icp.hpp
    /usr/local/include/opencv4/opencv2/surface_matching/pose_3d.hpp
    /usr/local/include/opencv4/opencv2/surface_matching/ppf_helpers.hpp
    /usr/local/include/opencv4/opencv2/surface_matching/ppf_match_3d.hpp
    /usr/local/include/opencv4/opencv2/surface_matching/t_hash_int.hpp
    /usr/local/include/opencv4/opencv2/text.hpp
    /usr/local/include/opencv4/opencv2/text/erfilter.hpp
    /usr/local/include/opencv4/opencv2/text/ocr.hpp
    /usr/local/include/opencv4/opencv2/text/swt_text_detection.hpp
    /usr/local/include/opencv4/opencv2/text/textDetector.hpp
    /usr/local/include/opencv4/opencv2/tracking.hpp
    /usr/local/include/opencv4/opencv2/tracking/feature.hpp
    /usr/local/include/opencv4/opencv2/tracking/kalman_filters.hpp
    /usr/local/include/opencv4/opencv2/tracking/onlineBoosting.hpp
    /usr/local/include/opencv4/opencv2/tracking/tldDataset.hpp
    /usr/local/include/opencv4/opencv2/tracking/tracking.hpp
    /usr/local/include/opencv4/opencv2/tracking/tracking_by_matching.hpp
    /usr/local/include/opencv4/opencv2/tracking/tracking_internals.hpp
    /usr/local/include/opencv4/opencv2/tracking/tracking_legacy.hpp
    /usr/local/include/opencv4/opencv2/video.hpp
    /usr/local/include/opencv4/opencv2/video/background_segm.hpp
    /usr/local/include/opencv4/opencv2/video/detail/tracking.detail.hpp
    /usr/local/include/opencv4/opencv2/video/legacy/constants_c.h
    /usr/local/include/opencv4/opencv2/video/tracking.hpp
    /usr/local/include/opencv4/opencv2/video/video.hpp
    /usr/local/include/opencv4/opencv2/videoio.hpp
    /usr/local/include/opencv4/opencv2/videoio/cap_ios.h
    /usr/local/include/opencv4/opencv2/videoio/legacy/constants_c.h
    /usr/local/include/opencv4/opencv2/videoio/registry.hpp
    /usr/local/include/opencv4/opencv2/videoio/videoio.hpp
    /usr/local/include/opencv4/opencv2/videoio/videoio_c.h
    /usr/local/include/opencv4/opencv2/videostab.hpp
    /usr/local/include/opencv4/opencv2/videostab/deblurring.hpp
    /usr/local/include/opencv4/opencv2/videostab/fast_marching.hpp
    /usr/local/include/opencv4/opencv2/videostab/fast_marching_inl.hpp
    /usr/local/include/opencv4/opencv2/videostab/frame_source.hpp
    /usr/local/include/opencv4/opencv2/videostab/global_motion.hpp
    /usr/local/include/opencv4/opencv2/videostab/inpainting.hpp
    /usr/local/include/opencv4/opencv2/videostab/log.hpp
    /usr/local/include/opencv4/opencv2/videostab/motion_core.hpp
    /usr/local/include/opencv4/opencv2/videostab/motion_stabilizing.hpp
    /usr/local/include/opencv4/opencv2/videostab/optical_flow.hpp
    /usr/local/include/opencv4/opencv2/videostab/outlier_rejection.hpp
    /usr/local/include/opencv4/opencv2/videostab/ring_buffer.hpp
    /usr/local/include/opencv4/opencv2/videostab/stabilizer.hpp
    /usr/local/include/opencv4/opencv2/videostab/wobble_suppression.hpp
    /usr/local/include/opencv4/opencv2/viz.hpp
    /usr/local/include/opencv4/opencv2/viz/types.hpp
    /usr/local/include/opencv4/opencv2/viz/viz3d.hpp
    /usr/local/include/opencv4/opencv2/viz/vizcore.hpp
    /usr/local/include/opencv4/opencv2/viz/widget_accessor.hpp
    /usr/local/include/opencv4/opencv2/viz/widgets.hpp
    /usr/local/include/opencv4/opencv2/wechat_qrcode.hpp
    /usr/local/include/opencv4/opencv2/xfeatures2d.hpp
    /usr/local/include/opencv4/opencv2/xfeatures2d/cuda.hpp
    /usr/local/include/opencv4/opencv2/xfeatures2d/nonfree.hpp
    /usr/local/include/opencv4/opencv2/ximgproc.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/brightedges.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/color_match.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/deriche_filter.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/disparity_filter.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/edge_drawing.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/edge_filter.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/edgeboxes.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/edgepreserving_filter.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/estimated_covariance.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/fast_hough_transform.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/fast_line_detector.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/fourier_descriptors.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/lsc.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/paillou_filter.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/peilin.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/radon_transform.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/ridgefilter.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/run_length_morphology.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/scansegment.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/seeds.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/segmentation.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/slic.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/sparse_match_interpolator.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/structured_edge_detection.hpp
    /usr/local/include/opencv4/opencv2/ximgproc/weighted_median_filter.hpp
    /usr/local/include/opencv4/opencv2/xobjdetect.hpp
    /usr/local/include/opencv4/opencv2/xphoto.hpp
    /usr/local/include/opencv4/opencv2/xphoto/bm3d_image_denoising.hpp
    /usr/local/include/opencv4/opencv2/xphoto/dct_image_denoising.hpp
    /usr/local/include/opencv4/opencv2/xphoto/inpainting.hpp
    /usr/local/include/opencv4/opencv2/xphoto/oilpainting.hpp
    /usr/local/include/opencv4/opencv2/xphoto/tonemap.hpp
    /usr/local/include/opencv4/opencv2/xphoto/white_balance.hpp
    /usr/local/lib/cmake/opencv4/OpenCVConfig-version.cmake
    /usr/local/lib/cmake/opencv4/OpenCVConfig.cmake
    /usr/local/lib/cmake/opencv4/OpenCVModules-release.cmake
    /usr/local/lib/cmake/opencv4/OpenCVModules.cmake
    /usr/local/lib/libopencv_alphamat.so
    /usr/local/lib/libopencv_alphamat.so.4.6.0
    /usr/local/lib/libopencv_alphamat.so.406
    /usr/local/lib/libopencv_aruco.so
    /usr/local/lib/libopencv_aruco.so.4.6.0
    /usr/local/lib/libopencv_aruco.so.406
    /usr/local/lib/libopencv_barcode.so
    /usr/local/lib/libopencv_barcode.so.4.6.0
    /usr/local/lib/libopencv_barcode.so.406
    /usr/local/lib/libopencv_bgsegm.so
    /usr/local/lib/libopencv_bgsegm.so.4.6.0
    /usr/local/lib/libopencv_bgsegm.so.406
    /usr/local/lib/libopencv_bioinspired.so
    /usr/local/lib/libopencv_bioinspired.so.4.6.0
    /usr/local/lib/libopencv_bioinspired.so.406
    /usr/local/lib/libopencv_calib3d.so
    /usr/local/lib/libopencv_calib3d.so.4.6.0
    /usr/local/lib/libopencv_calib3d.so.406
    /usr/local/lib/libopencv_ccalib.so
    /usr/local/lib/libopencv_ccalib.so.4.6.0
    /usr/local/lib/libopencv_ccalib.so.406
    /usr/local/lib/libopencv_core.so
    /usr/local/lib/libopencv_core.so.4.6.0
    /usr/local/lib/libopencv_core.so.406
    /usr/local/lib/libopencv_datasets.so
    /usr/local/lib/libopencv_datasets.so.4.6.0
    /usr/local/lib/libopencv_datasets.so.406
    /usr/local/lib/libopencv_dnn.so
    /usr/local/lib/libopencv_dnn.so.4.6.0
    /usr/local/lib/libopencv_dnn.so.406
    /usr/local/lib/libopencv_dnn_objdetect.so
    /usr/local/lib/libopencv_dnn_objdetect.so.4.6.0
    /usr/local/lib/libopencv_dnn_objdetect.so.406
    /usr/local/lib/libopencv_dnn_superres.so
    /usr/local/lib/libopencv_dnn_superres.so.4.6.0
    /usr/local/lib/libopencv_dnn_superres.so.406
    /usr/local/lib/libopencv_dpm.so
    /usr/local/lib/libopencv_dpm.so.4.6.0
    /usr/local/lib/libopencv_dpm.so.406
    /usr/local/lib/libopencv_face.so
    /usr/local/lib/libopencv_face.so.4.6.0
    /usr/local/lib/libopencv_face.so.406
    /usr/local/lib/libopencv_features2d.so
    /usr/local/lib/libopencv_features2d.so.4.6.0
    /usr/local/lib/libopencv_features2d.so.406
    /usr/local/lib/libopencv_flann.so
    /usr/local/lib/libopencv_flann.so.4.6.0
    /usr/local/lib/libopencv_flann.so.406
    /usr/local/lib/libopencv_freetype.so
    /usr/local/lib/libopencv_freetype.so.4.6.0
    /usr/local/lib/libopencv_freetype.so.406
    /usr/local/lib/libopencv_fuzzy.so
    /usr/local/lib/libopencv_fuzzy.so.4.6.0
    /usr/local/lib/libopencv_fuzzy.so.406
    /usr/local/lib/libopencv_gapi.so
    /usr/local/lib/libopencv_gapi.so.4.6.0
    /usr/local/lib/libopencv_gapi.so.406
    /usr/local/lib/libopencv_hdf.so
    /usr/local/lib/libopencv_hdf.so.4.6.0
    /usr/local/lib/libopencv_hdf.so.406
    /usr/local/lib/libopencv_hfs.so
    /usr/local/lib/libopencv_hfs.so.4.6.0
    /usr/local/lib/libopencv_hfs.so.406
    /usr/local/lib/libopencv_highgui.so
    /usr/local/lib/libopencv_highgui.so.4.6.0
    /usr/local/lib/libopencv_highgui.so.406
    /usr/local/lib/libopencv_img_hash.so
    /usr/local/lib/libopencv_img_hash.so.4.6.0
    /usr/local/lib/libopencv_img_hash.so.406
    /usr/local/lib/libopencv_imgcodecs.so
    /usr/local/lib/libopencv_imgcodecs.so.4.6.0
    /usr/local/lib/libopencv_imgcodecs.so.406
    /usr/local/lib/libopencv_imgproc.so
    /usr/local/lib/libopencv_imgproc.so.4.6.0
    /usr/local/lib/libopencv_imgproc.so.406
    /usr/local/lib/libopencv_intensity_transform.so
    /usr/local/lib/libopencv_intensity_transform.so.4.6.0
    /usr/local/lib/libopencv_intensity_transform.so.406
    /usr/local/lib/libopencv_line_descriptor.so
    /usr/local/lib/libopencv_line_descriptor.so.4.6.0
    /usr/local/lib/libopencv_line_descriptor.so.406
    /usr/local/lib/libopencv_mcc.so
    /usr/local/lib/libopencv_mcc.so.4.6.0
    /usr/local/lib/libopencv_mcc.so.406
    /usr/local/lib/libopencv_ml.so
    /usr/local/lib/libopencv_ml.so.4.6.0
    /usr/local/lib/libopencv_ml.so.406
    /usr/local/lib/libopencv_objdetect.so
    /usr/local/lib/libopencv_objdetect.so.4.6.0
    /usr/local/lib/libopencv_objdetect.so.406
    /usr/local/lib/libopencv_optflow.so
    /usr/local/lib/libopencv_optflow.so.4.6.0
    /usr/local/lib/libopencv_optflow.so.406
    /usr/local/lib/libopencv_phase_unwrapping.so
    /usr/local/lib/libopencv_phase_unwrapping.so.4.6.0
    /usr/local/lib/libopencv_phase_unwrapping.so.406
    /usr/local/lib/libopencv_photo.so
    /usr/local/lib/libopencv_photo.so.4.6.0
    /usr/local/lib/libopencv_photo.so.406
    /usr/local/lib/libopencv_plot.so
    /usr/local/lib/libopencv_plot.so.4.6.0
    /usr/local/lib/libopencv_plot.so.406
    /usr/local/lib/libopencv_quality.so
    /usr/local/lib/libopencv_quality.so.4.6.0
    /usr/local/lib/libopencv_quality.so.406
    /usr/local/lib/libopencv_rapid.so
    /usr/local/lib/libopencv_rapid.so.4.6.0
    /usr/local/lib/libopencv_rapid.so.406
    /usr/local/lib/libopencv_reg.so
    /usr/local/lib/libopencv_reg.so.4.6.0
    /usr/local/lib/libopencv_reg.so.406
    /usr/local/lib/libopencv_rgbd.so
    /usr/local/lib/libopencv_rgbd.so.4.6.0
    /usr/local/lib/libopencv_rgbd.so.406
    /usr/local/lib/libopencv_saliency.so
    /usr/local/lib/libopencv_saliency.so.4.6.0
    /usr/local/lib/libopencv_saliency.so.406
    /usr/local/lib/libopencv_sfm.so
    /usr/local/lib/libopencv_sfm.so.4.6.0
    /usr/local/lib/libopencv_sfm.so.406
    /usr/local/lib/libopencv_shape.so
    /usr/local/lib/libopencv_shape.so.4.6.0
    /usr/local/lib/libopencv_shape.so.406
    /usr/local/lib/libopencv_stereo.so
    /usr/local/lib/libopencv_stereo.so.4.6.0
    /usr/local/lib/libopencv_stereo.so.406
    /usr/local/lib/libopencv_stitching.so
    /usr/local/lib/libopencv_stitching.so.4.6.0
    /usr/local/lib/libopencv_stitching.so.406
    /usr/local/lib/libopencv_structured_light.so
    /usr/local/lib/libopencv_structured_light.so.4.6.0
    /usr/local/lib/libopencv_structured_light.so.406
    /usr/local/lib/libopencv_superres.so
    /usr/local/lib/libopencv_superres.so.4.6.0
    /usr/local/lib/libopencv_superres.so.406
    /usr/local/lib/libopencv_surface_matching.so
    /usr/local/lib/libopencv_surface_matching.so.4.6.0
    /usr/local/lib/libopencv_surface_matching.so.406
    /usr/local/lib/libopencv_text.so
    /usr/local/lib/libopencv_text.so.4.6.0
    /usr/local/lib/libopencv_text.so.406
    /usr/local/lib/libopencv_tracking.so
    /usr/local/lib/libopencv_tracking.so.4.6.0
    /usr/local/lib/libopencv_tracking.so.406
    /usr/local/lib/libopencv_video.so
    /usr/local/lib/libopencv_video.so.4.6.0
    /usr/local/lib/libopencv_video.so.406
    /usr/local/lib/libopencv_videoio.so
    /usr/local/lib/libopencv_videoio.so.4.6.0
    /usr/local/lib/libopencv_videoio.so.406
    /usr/local/lib/libopencv_videostab.so
    /usr/local/lib/libopencv_videostab.so.4.6.0
    /usr/local/lib/libopencv_videostab.so.406
    /usr/local/lib/libopencv_viz.so
    /usr/local/lib/libopencv_viz.so.4.6.0
    /usr/local/lib/libopencv_viz.so.406
    /usr/local/lib/libopencv_wechat_qrcode.so
    /usr/local/lib/libopencv_wechat_qrcode.so.4.6.0
    /usr/local/lib/libopencv_wechat_qrcode.so.406
    /usr/local/lib/libopencv_xfeatures2d.so
    /usr/local/lib/libopencv_xfeatures2d.so.4.6.0
    /usr/local/lib/libopencv_xfeatures2d.so.406
    /usr/local/lib/libopencv_ximgproc.so
    /usr/local/lib/libopencv_ximgproc.so.4.6.0
    /usr/local/lib/libopencv_ximgproc.so.406
    /usr/local/lib/libopencv_xobjdetect.so
    /usr/local/lib/libopencv_xobjdetect.so.4.6.0
    /usr/local/lib/libopencv_xobjdetect.so.406
    /usr/local/lib/libopencv_xphoto.so
    /usr/local/lib/libopencv_xphoto.so.4.6.0
    /usr/local/lib/libopencv_xphoto.so.406
    /usr/local/lib/opencv4/3rdparty/libcorrespondence.a
    /usr/local/lib/opencv4/3rdparty/libmultiview.a
    /usr/local/lib/opencv4/3rdparty/libnumeric.a
    /usr/local/lib/python3.9/site-packages/cv2/__init__.py
    /usr/local/lib/python3.9/site-packages/cv2/config-3.9.py
    /usr/local/lib/python3.9/site-packages/cv2/config.py
    /usr/local/lib/python3.9/site-packages/cv2/gapi/__init__.py
    /usr/local/lib/python3.9/site-packages/cv2/load_config_py2.py
    /usr/local/lib/python3.9/site-packages/cv2/load_config_py3.py
    /usr/local/lib/python3.9/site-packages/cv2/mat_wrapper/__init__.py
    /usr/local/lib/python3.9/site-packages/cv2/misc/__init__.py
    /usr/local/lib/python3.9/site-packages/cv2/misc/version.py
    /usr/local/lib/python3.9/site-packages/cv2/python-3.9/cv2.cpython-39.so
    /usr/local/lib/python3.9/site-packages/cv2/utils/__init__.py
    /usr/local/libdata/pkgconfig/opencv4.pc
    /usr/local/share/java/opencv4/libopencv_java460.so
    /usr/local/share/java/opencv4/opencv-460.jar
    /usr/local/share/licenses/opencv-4.6.0/BSD3CLAUSE
    /usr/local/share/licenses/opencv-4.6.0/LICENSE
    /usr/local/share/licenses/opencv-4.6.0/catalog.mk
    /usr/local/share/opencv4/haarcascades/haarcascade_eye.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_eye_tree_eyeglasses.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_frontalcatface.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_frontalcatface_extended.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_frontalface_alt.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_frontalface_alt2.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_frontalface_alt_tree.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_frontalface_default.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_fullbody.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_lefteye_2splits.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_licence_plate_rus_16stages.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_lowerbody.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_profileface.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_righteye_2splits.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_russian_plate_number.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_smile.xml
    /usr/local/share/opencv4/haarcascades/haarcascade_upperbody.xml
    /usr/local/share/opencv4/lbpcascades/lbpcascade_frontalcatface.xml
    /usr/local/share/opencv4/lbpcascades/lbpcascade_frontalface.xml
    /usr/local/share/opencv4/lbpcascades/lbpcascade_frontalface_improved.xml
    /usr/local/share/opencv4/lbpcascades/lbpcascade_profileface.xml
    /usr/local/share/opencv4/lbpcascades/lbpcascade_silverware.xml
    /usr/local/share/opencv4/quality/brisque_model_live.yml
    /usr/local/share/opencv4/quality/brisque_range_live.yml
    /usr/local/share/opencv4/valgrind.supp
    /usr/local/share/opencv4/valgrind_3rdparty.supp

Here is OpenCL information using clinfo:

clinfo:

Number of platforms                               2
  Platform Name                                   Clover
  Platform Vendor                                 Mesa
  Platform Version                                OpenCL 1.1 Mesa 21.3.8
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_icd
  Platform Extensions function suffix             MESA

  Platform Name                                   Portable Computing Language
  Platform Vendor                                 The pocl project
  Platform Version                                OpenCL 2.0 pocl 1.8  Unix, Release+Asserts, RELOC, LLVM 13.0.1, SLEEF, DISTRO, POCL_DEBUG
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_icd cl_pocl_content_size
  Platform Extensions function suffix             POCL

  Platform Name                                   Clover
Number of devices                                 1
  Device Name                                     AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
  Device Vendor                                   AMD
  Device Vendor ID                                0x1002
  Device Version                                  OpenCL 1.1 Mesa 21.3.8
  Device Numeric Version                          0x401000 (1.1.0)
  Driver Version                                  21.3.8
  Device OpenCL C Version                         OpenCL C 1.1 
  Device Type                                     GPU
  Device Profile                                  FULL_PROFILE
  Device Available                                Yes
  Compiler Available                              Yes
  Max compute units                               36
  Max clock frequency                             1100MHz
  Max work item dimensions                        3
  Max work item sizes                             256x256x256
  Max work group size                             256
  Preferred work group size multiple (kernel)     64
  Preferred / native vector sizes                 
    char                                                16 / 16      
    short                                                8 / 8       
    int                                                  4 / 4       
    long                                                 2 / 2       
    half                                                 0 / 0        (n/a)
    float                                                4 / 4       
    double                                               2 / 2        (cl_khr_fp64)
  Half-precision Floating-point support           (n/a)
  Single-precision Floating-point support         (core)
    Denormals                                     No
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 No
    Round to infinity                             No
    IEEE754-2008 fused multiply-add               No
    Support is emulated in software               No
    Correctly-rounded divide and sqrt operations  No
  Double-precision Floating-point support         (cl_khr_fp64)
    Denormals                                     Yes
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 Yes
    Round to infinity                             Yes
    IEEE754-2008 fused multiply-add               Yes
    Support is emulated in software               No
  Address bits                                    64, Little-Endian
  Global memory size                              4294967296 (4GiB)
  Error Correction support                        No
  Max memory allocation                           3435973836 (3.2GiB)
  Unified memory for Host and Device              No
  Minimum alignment for any data type             128 bytes
  Alignment of base address                       32768 bits (4096 bytes)
  Global Memory cache type                        None
  Image support                                   No
  Local memory type                               Local
  Local memory size                               32768 (32KiB)
  Max number of constant args                     16
  Max constant buffer size                        67108864 (64MiB)
  Max size of kernel argument                     1024
  Queue properties                                
    Out-of-order execution                        No
    Profiling                                     Yes
  Profiling timer resolution                      0ns
  Execution capabilities                          
    Run OpenCL kernels                            Yes
    Run native kernels                            No
    ILs with version                              (n/a)
  Built-in kernels with version                   (n/a)
  Device Extensions                               cl_khr_byte_addressable_store cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_int64_base_atomics cl_khr_int64_extended_atomics cl_khr_fp64 cl_khr_extended_versioning
  Device Extensions with Version                  cl_khr_byte_addressable_store                                    0x400000 (1.0.0)
                                                  cl_khr_global_int32_base_atomics                                 0x400000 (1.0.0)
                                                  cl_khr_global_int32_extended_atomics                             0x400000 (1.0.0)
                                                  cl_khr_local_int32_base_atomics                                  0x400000 (1.0.0)
                                                  cl_khr_local_int32_extended_atomics                              0x400000 (1.0.0)
                                                  cl_khr_int64_base_atomics                                        0x400000 (1.0.0)
                                                  cl_khr_int64_extended_atomics                                    0x400000 (1.0.0)
                                                  cl_khr_fp64                                                      0x400000 (1.0.0)
                                                  cl_khr_extended_versioning                                       0x400000 (1.0.0)

  Platform Name                                   Portable Computing Language
Number of devices                                 1
  Device Name                                     AMD FX(tm)-8350 Eight-Core Processor           
  Device Vendor                                   pocl
  Device Vendor ID                                0x6c636f70
  Device Version                                  OpenCL 1.2 pocl HSTR: pthread-x86_64-portbld-freebsd13.1-bdver2
  Driver Version                                  1.8
  Device OpenCL C Version                         OpenCL C 1.2 pocl
  Device Type                                     CPU
  Device Profile                                  FULL_PROFILE
  Device Available                                Yes
  Compiler Available                              Yes
  Linker Available                                Yes
  Max compute units                               8
  Max clock frequency                             4000MHz
  Device Partition                                (core)
    Max number of sub-devices                     8
    Supported partition types                     equally, by counts
    Supported affinity domains                    (n/a)
  Max work item dimensions                        3
  Max work item sizes                             4096x4096x4096
  Max work group size                             4096
  Preferred work group size multiple (kernel)     8
  Preferred / native vector sizes                 
    char                                                16 / 16      
    short                                               16 / 16      
    int                                                  8 / 8       
    long                                                 4 / 4       
    half                                                 0 / 0        (n/a)
    float                                                8 / 8       
    double                                               4 / 4        (cl_khr_fp64)
  Half-precision Floating-point support           (n/a)
  Single-precision Floating-point support         (core)
    Denormals                                     Yes
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 Yes
    Round to infinity                             Yes
    IEEE754-2008 fused multiply-add               Yes
    Support is emulated in software               No
    Correctly-rounded divide and sqrt operations  Yes
  Double-precision Floating-point support         (cl_khr_fp64)
    Denormals                                     Yes
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 Yes
    Round to infinity                             Yes
    IEEE754-2008 fused multiply-add               Yes
    Support is emulated in software               No
  Address bits                                    64, Little-Endian
  Global memory size                              31261519872 (29.11GiB)
  Error Correction support                        No
  Max memory allocation                           8589934592 (8GiB)
  Unified memory for Host and Device              Yes
  Minimum alignment for any data type             128 bytes
  Alignment of base address                       1024 bits (128 bytes)
  Global Memory cache type                        Read/Write
  Global Memory cache size                        2097152 (2MiB)
  Global Memory cache line size                   64 bytes
  Image support                                   Yes
    Max number of samplers per kernel             16
    Max size for 1D images from buffer            536870912 pixels
    Max 1D or 2D image array size                 2048 images
    Max 2D image size                             16384x16384 pixels
    Max 3D image size                             2048x2048x2048 pixels
    Max number of read image args                 128
    Max number of write image args                128
  Local memory type                               Global
  Local memory size                               16384 (16KiB)
  Max number of constant args                     8
  Max constant buffer size                        16384 (16KiB)
  Max size of kernel argument                     1024
  Queue properties                                
    Out-of-order execution                        Yes
    Profiling                                     Yes
  Prefer user sync for interop                    Yes
  Profiling timer resolution                      1ns
  Execution capabilities                          
    Run OpenCL kernels                            Yes
    Run native kernels                            Yes
  printf() buffer size                            16777216 (16MiB)
  Built-in kernels                                (n/a)
  Device Extensions                               cl_khr_byte_addressable_store cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_3d_image_writes cl_khr_fp64 cl_khr_int64_base_atomics cl_khr_int64_extended_atomics cl_khr_fp64

NULL platform behavior
  clGetPlatformInfo(NULL, CL_PLATFORM_NAME, ...)  Clover
  clGetDeviceIDs(NULL, CL_DEVICE_TYPE_ALL, ...)   Success [MESA]
  clCreateContext(NULL, ...) [default]            Success [MESA]
  clCreateContext(NULL, ...) [other]              Success [POCL]
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_DEFAULT)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_CPU)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_GPU)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_ACCELERATOR)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_CUSTOM)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_ALL)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)

ICD loader properties
  ICD loader Name                                 OpenCL ICD Loader
  ICD loader Vendor                               OCL Icd free software
  ICD loader Version                              2.3.1
  ICD loader Profile                              OpenCL 3.0
Segmentation fault (core dumped)

Here are the MESA information details installed:

pkg info mesa-dri:

mesa-dri-21.3.8
Name           : mesa-dri
Version        : 21.3.8
Installed on   : Sat Aug 20 04:31:52 2022 EDT
Origin         : graphics/mesa-dri
Architecture   : FreeBSD:13:amd64
Prefix         : /usr/local
Categories     : graphics
Licenses       : MIT
Maintainer     : x11@FreeBSD.org
WWW            : https://www.mesa3d.org/
Comment        : OpenGL hardware acceleration drivers for DRI2+
Options        :
        PLATFORM_WAYLAND: on
        PLATFORM_X11   : on
        WAYLAND        : on
        ZSTD           : on
Shared Libs required:
        libzstd.so.1
        libxshmfence.so.1
        libxcb.so.1
        libxcb-xfixes.so.0
        libxcb-sync.so.1
        libxcb-shm.so.0
        libxcb-randr.so.0
        libxcb-present.so.0
        libxcb-dri3.so.0
        libxcb-dri2.so.0
        libwayland-client.so.0
        libglapi.so.0
        libexpat.so.1
        libdrm_radeon.so.1
        libdrm_intel.so.1
        libdrm_amdgpu.so.1
        libdrm.so.2
        libXvMC.so.1
        libXv.so.1
        libX11.so.6
        libX11-xcb.so.1
        libLLVM-13.so
Shared Libs provided:
        libvulkan_radeon.so
        libvulkan_lvp.so
        libvulkan_intel.so
        libmesa_dri_drivers.so
        libgallium_dri.so
        libXvMCgallium.so.1
Annotations    :
        FreeBSD_version: 1300139
        repo_type      : binary
        repository     : FreeBSD
Flat size      : 73.5MiB
Description    :
This package contains the current stable release of the client drivers for DRI2+

With a X Server configured for DRI, they allow direct rendering of hardware-
accelerated OpenGL. This package also includes the software renderer, either

Details for the MESA installation files into the system:

pkg info -lx mesa-dri:

mesa-dri-21.3.8:

        /usr/local/include/GL/internal/dri_interface.h
        /usr/local/lib/dri/crocus_dri.so
        /usr/local/lib/dri/i830_dri.so
        /usr/local/lib/dri/i915_dri.so
        /usr/local/lib/dri/i965_dri.so
        /usr/local/lib/dri/iris_dri.so
        /usr/local/lib/dri/kms_swrast_dri.so
        /usr/local/lib/dri/r200_dri.so
        /usr/local/lib/dri/r300_dri.so
        /usr/local/lib/dri/r600_dri.so
        /usr/local/lib/dri/radeon_dri.so
        /usr/local/lib/dri/radeonsi_dri.so
        /usr/local/lib/dri/swrast_dri.so
        /usr/local/lib/dri/vmwgfx_dri.so
        /usr/local/lib/libXvMCr600.so
        /usr/local/lib/libXvMCr600.so.1
        /usr/local/lib/libXvMCr600.so.1.0
        /usr/local/lib/libXvMCr600.so.1.0.0
        /usr/local/lib/libvulkan_intel.so
        /usr/local/lib/libvulkan_lvp.so
        /usr/local/lib/libvulkan_radeon.so
        /usr/local/libdata/pkgconfig/dri.pc
        /usr/local/share/drirc.d/00-mesa-defaults.conf
        /usr/local/share/drirc.d/00-radv-defaults.conf
        /usr/local/share/drirc.d/01-freebsd.conf
        /usr/local/share/licenses/mesa-dri-21.3.8/LICENSE
        /usr/local/share/licenses/mesa-dri-21.3.8/MIT
        /usr/local/share/licenses/mesa-dri-21.3.8/catalog.mk
        /usr/local/share/vulkan/icd.d/intel_icd.x86_64.json
        /usr/local/share/vulkan/icd.d/lvp_icd.x86_64.json
        /usr/local/share/vulkan/icd.d/radeon_icd.x86_64.json

Information about clover installed:

pkg info clover:

clover-21.3.8
Name           : clover
Version        : 21.3.8
Installed on   : Fri Sep  9 22:16:38 2022 EDT
Origin         : lang/clover
Architecture   : FreeBSD:13:amd64
Prefix         : /usr/local
Categories     : lang
Licenses       : MIT
Maintainer     : x11@FreeBSD.org
WWW            : https://dri.freedesktop.org/wiki/GalliumCompute/
Comment        : Mesa OpenCL implementation for AMD GPUs
Shared Libs required:
        libzstd.so.1
        libexpat.so.1
        libdrm_radeon.so.1
        libdrm_amdgpu.so.1
        libdrm.so.2
        libclang-cpp.so.13
        libLLVM-13.so
Shared Libs provided:
        libMesaOpenCL.so.1
Annotations    :
        FreeBSD_version: 1301000
        repo_type      : binary
        repository     : FreeBSD
Flat size      : 17.0MiB
Description    :
This package contains Mesa's libOpenCL implementation "Clover".
It is built upon GALLIUM and currently only supports Radeon GPUs.

WWW: https://dri.freedesktop.org/wiki/GalliumCompute/

Installation files, installed into FreeBSD for clover:

pkg info -lx clover:

clover-21.3.8:
        /usr/local/etc/OpenCL/vendors/mesa.icd
        /usr/local/lib/gallium-pipe/pipe_r600.so
        /usr/local/lib/gallium-pipe/pipe_radeonsi.so
        /usr/local/lib/libMesaOpenCL.so
        /usr/local/lib/libMesaOpenCL.so.1
        /usr/local/lib/libMesaOpenCL.so.1.0.0
        /usr/local/share/licenses/clover-21.3.8/LICENSE
        /usr/local/share/licenses/clover-21.3.8/MIT
        /usr/local/share/licenses/clover-21.3.8/catalog.mk

I also have installed other various OpenCL ports, I assume this installation is the Header files for OpenCL from Khronos:

pkg info opencl:

opencl-3.0.8

Name           : opencl
Version        : 3.0.8
Installed on   : Sat Aug 20 04:38:33 2022 EDT
Origin         : devel/opencl
Architecture   : FreeBSD:13:*
Prefix         : /usr/local
Categories     : devel
Licenses       : APACHE20
Maintainer     : ohartmann@walstatt.org
WWW            : UNKNOWN
Comment        : Open Computing Language (OpenCL) specifications V3.0 (header files)
Annotations    :
        repo_type      : binary
        repository     : FreeBSD
Flat size      : 628KiB
Description    :
OpenCL (Open Computing Language) is an open royalty-free standard
for general purpose parallel programming across CPUs, GPUs and
other processors, giving software developers portable and efficient
access to the power of these heterogeneous processing platforms.

These header are covering OpenCL API 3.0

Installation details for the files installed into the system for opencl port:

pkg info -lx opencl:

opencl-3.0.8:
        /usr/local/include/CL/cl.h
        /usr/local/include/CL/cl2.hpp
        /usr/local/include/CL/cl_d3d10.h
        /usr/local/include/CL/cl_d3d11.h
        /usr/local/include/CL/cl_dx9_media_sharing.h
        /usr/local/include/CL/cl_dx9_media_sharing_intel.h
        /usr/local/include/CL/cl_egl.h
        /usr/local/include/CL/cl_ext.h
        /usr/local/include/CL/cl_ext_intel.h
        /usr/local/include/CL/cl_gl.h
        /usr/local/include/CL/cl_gl_ext.h
        /usr/local/include/CL/cl_half.h
        /usr/local/include/CL/cl_icd.h
        /usr/local/include/CL/cl_layer.h
        /usr/local/include/CL/cl_platform.h
        /usr/local/include/CL/cl_va_api_media_sharing_intel.h
        /usr/local/include/CL/cl_version.h
        /usr/local/include/CL/opencl.h
        /usr/local/include/CL/opencl.hpp
        /usr/local/share/licenses/opencl-3.0.8/APACHE20
        /usr/local/share/licenses/opencl-3.0.8/LICENSE
        /usr/local/share/licenses/opencl-3.0.8/catalog.mk

I have also installed ocl-icd (not sure what this is exactly for OpenCL):

pkg info ocl-icd:

pkg info ocl-icd
ocl-icd-2.3.1
Name           : ocl-icd
Version        : 2.3.1
Installed on   : Thu Sep  8 21:27:03 2022 EDT
Origin         : devel/ocl-icd
Architecture   : FreeBSD:13:amd64
Prefix         : /usr/local
Categories     : devel
Licenses       : BSD2CLAUSE
Maintainer     : ohartmann@walstatt.org
WWW            : https://github.com/OCL-dev/ocl-icd
Comment        : OpenCL Installable Client Driver
Options        :
        DOCS           : on
        MANPAGES       : on
Shared Libs provided:
        libOpenCL.so.1
Annotations    :
        FreeBSD_version: 1301000
        repo_type      : binary
        repository     : FreeBSD
Flat size      : 249KiB
Description    :
OpenCL implementations are provided as ICD (Installable Client Driver). An
OpenCL program can use several ICD thanks to the use of an ICD Loader as
provided by this project. This free ICD Loader can load any (free or non
free) ICD.

WWW: https://github.com/OCL-dev/ocl-icd

Installation files installed into the system for ocl-icd:

pkg info -lx ocl-icd:

ocl-icd-2.3.1:
        /usr/local/include/ocl_icd.h
        /usr/local/lib/libOpenCL.so
        /usr/local/lib/libOpenCL.so.1
        /usr/local/lib/libOpenCL.so.1.0.0
        /usr/local/libdata/pkgconfig/OpenCL.pc
        /usr/local/libdata/pkgconfig/ocl-icd.pc
        /usr/local/man/man7/libOpenCL.7.gz
        /usr/local/man/man7/libOpenCL.so.7.gz
        /usr/local/share/doc/ocl-icd/examples/ocl_icd_bindings.c
        /usr/local/share/doc/ocl-icd/html/libOpenCL.html
        /usr/local/share/licenses/ocl-icd-2.3.1/BSD2CLAUSE
        /usr/local/share/licenses/ocl-icd-2.3.1/LICENSE
        /usr/local/share/licenses/ocl-icd-2.3.1/catalog.mk

Lastly, not sure if it is useful, I was able to compile Khrono's OpenCL SDK from their GitHub: https://github.com/KhronosGroup/OpenCL-SDK

Here are System information:

neofetch:

OS: FreeBSD 13.1-RELEASE-p1 amd64 
Packages: 1538 (pkg) 
Shell: csh tcsh 6.22.04 
Resolution: 3840x2160 
DE: Plasma 5.24.6 
WM: KWin 
Theme: Breeze [GTK2], Adwaita [GTK3] 
Icons: breeze-dark [GTK2], Adwaita [GTK3] 
Terminal: konsole 
CPU: AMD FX-8350 (8) @ 3.991GHz 
GPU: Ellesmere [Radeon RX 470/480/570/570X/580/580X/590] 
Memory: 13072MiB / 32684MiB 

I am using AMD Radeon RX-580 GPU.

Thank You.

rajhlinux commented 1 year ago

If I build with the CmakeList.txt option with the below setting:

option(DARKNET_NO_BINARY "Do not build binary" ON)

Does this mean only the example files will not be built?

Everything seems to work fine with no errors:

$ cmake ..

-- The C compiler identification is Clang 13.0.0
-- The CXX compiler identification is Clang 13.0.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- FreeBSD
-- Looking for CL_VERSION_3_0
-- Looking for CL_VERSION_3_0 - found
-- Found OpenCL: /usr/local/lib/libOpenCL.so (found version "3.0") 
-- Found OpenCV: /usr/local (found version "4.6.0") 
OpenCV_LIBS: opencv_calib3dopencv_coreopencv_dnnopencv_features2dopencv_flannopencv_gapiopencv_highguiopencv_imgcodecsopencv_imgprocopencv_mlopencv_objdetectopencv_photoopencv_stitchingopencv_videoopencv_videoioopencv_alphamatopencv_arucoopencv_barcodeopencv_bgsegmopencv_bioinspiredopencv_ccalibopencv_datasetsopencv_dnn_objdetectopencv_dnn_superresopencv_dpmopencv_faceopencv_freetypeopencv_fuzzyopencv_hdfopencv_hfsopencv_img_hashopencv_intensity_transformopencv_line_descriptoropencv_mccopencv_optflowopencv_phase_unwrappingopencv_plotopencv_qualityopencv_rapidopencv_regopencv_rgbdopencv_saliencyopencv_sfmopencv_shapeopencv_stereoopencv_structured_lightopencv_superresopencv_surface_matchingopencv_textopencv_trackingopencv_videostabopencv_vizopencv_wechat_qrcodeopencv_xfeatures2dopencv_ximgprocopencv_xobjdetectopencv_xphoto
-- Configuring done
-- Generating done
-- Build files have been written to: /usr/home/user/darknet/build

 $ make -j8

[  0%] Building C object CMakeFiles/darknet_s.dir/src/activation_layer.c.o
[  0%] Building C object CMakeFiles/darknet_s.dir/examples/art.c.o
[  2%] Building C object CMakeFiles/darknet_s.dir/examples/attention.c.o
[  3%] Building C object CMakeFiles/darknet_l.dir/src/activation_layer.c.o
[  2%] Building C object CMakeFiles/darknet_s.dir/src/activations.c.o
[  3%] Building C object CMakeFiles/darknet_s.dir/src/avgpool_layer.c.o
[  4%] Building C object CMakeFiles/darknet_l.dir/src/activations.c.o
[  3%] Building C object CMakeFiles/darknet_l.dir/examples/art.c.o
[  5%] Building C object CMakeFiles/darknet_l.dir/examples/attention.c.o
[  5%] Building C object CMakeFiles/darknet_s.dir/src/batchnorm_layer.c.o
[  6%] Building C object CMakeFiles/darknet_l.dir/src/avgpool_layer.c.o
[  7%] Building C object CMakeFiles/darknet_s.dir/src/blas.c.o
[  7%] Building C object CMakeFiles/darknet_l.dir/src/batchnorm_layer.c.o
[  7%] Building C object CMakeFiles/darknet_s.dir/src/box.c.o
/usr/home/user/darknet/examples/attention.c: In function 'train_attention':
/usr/home/user/darknet/examples/attention.c:162:27: warning: argument 1 range [18446744071562067968, 18446744073709551615] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
  162 |         int *inds = (int*)calloc(resized.y.rows, sizeof(int));
      |                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/home/user/darknet/include/darknet.h:14,
                 from /usr/home/user/darknet/examples/attention.c:1:
/usr/include/stdlib.h:98:10: note: in a call to allocation function 'calloc' declared here
   98 | void    *calloc(size_t, size_t) __malloc_like __result_use_check
      |          ^~~~~~
/usr/home/user/darknet/examples/attention.c:162:27: warning: argument 1 range [18446744071562067968, 18446744073709551615] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
  162 |         int *inds = (int*)calloc(resized.y.rows, sizeof(int));
      |                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/home/user/darknet/include/darknet.h:14,
                 from /usr/home/user/darknet/examples/attention.c:1:
/usr/include/stdlib.h:98:10: note: in a call to allocation function 'calloc' declared here
   98 | void    *calloc(size_t, size_t) __malloc_like __result_use_check
      |          ^~~~~~
[  8%] Building C object CMakeFiles/darknet_l.dir/src/blas.c.o
[  9%] Building C object CMakeFiles/darknet_s.dir/examples/captcha.c.o
[  9%] Building C object CMakeFiles/darknet_l.dir/src/box.c.o
[ 10%] Building C object CMakeFiles/darknet_l.dir/examples/captcha.c.o
[ 11%] Building C object CMakeFiles/darknet_l.dir/examples/cifar.c.o
[ 12%] Building C object CMakeFiles/darknet_s.dir/examples/cifar.c.o
[ 12%] Building C object CMakeFiles/darknet_s.dir/examples/classifier.c.o
[ 13%] Building C object CMakeFiles/darknet_s.dir/examples/coco.c.o
[ 13%] Building C object CMakeFiles/darknet_l.dir/examples/classifier.c.o
[ 13%] Building C object CMakeFiles/darknet_s.dir/src/col2im.c.o
[ 14%] Building C object CMakeFiles/darknet_l.dir/examples/coco.c.o
[ 14%] Building C object CMakeFiles/darknet_l.dir/src/col2im.c.o
[ 15%] Building C object CMakeFiles/darknet_s.dir/src/compare.c.o
[ 16%] Building C object CMakeFiles/darknet_l.dir/src/compare.c.o
[ 17%] Building C object CMakeFiles/darknet_s.dir/src/connected_layer.c.o
[ 18%] Building C object CMakeFiles/darknet_l.dir/src/connected_layer.c.o
[ 18%] Building C object CMakeFiles/darknet_s.dir/src/convolutional_layer.c.o
[ 19%] Building C object CMakeFiles/darknet_s.dir/src/cost_layer.c.o
[ 19%] Building C object CMakeFiles/darknet_l.dir/src/convolutional_layer.c.o
[ 20%] Building C object CMakeFiles/darknet_l.dir/src/cost_layer.c.o
[ 20%] Building C object CMakeFiles/darknet_s.dir/src/crnn_layer.c.o
[ 21%] Building C object CMakeFiles/darknet_s.dir/src/crop_layer.c.o
[ 21%] Building C object CMakeFiles/darknet_l.dir/src/crnn_layer.c.o
[ 22%] Building C object CMakeFiles/darknet_l.dir/src/crop_layer.c.o
[ 23%] Building C object CMakeFiles/darknet_s.dir/src/data.c.o
[ 24%] Building C object CMakeFiles/darknet_l.dir/src/data.c.o
[ 24%] Building C object CMakeFiles/darknet_s.dir/src/deconvolutional_layer.c.o
[ 25%] Building C object CMakeFiles/darknet_s.dir/src/demo.c.o
[ 25%] Building C object CMakeFiles/darknet_s.dir/src/detection_layer.c.o
[ 25%] Building C object CMakeFiles/darknet_l.dir/src/deconvolutional_layer.c.o
[ 26%] Building C object CMakeFiles/darknet_l.dir/src/demo.c.o
[ 26%] Building C object CMakeFiles/darknet_l.dir/src/detection_layer.c.o
[ 27%] Building C object CMakeFiles/darknet_s.dir/examples/detector.c.o
[ 28%] Building C object CMakeFiles/darknet_s.dir/examples/dice.c.o
[ 29%] Building C object CMakeFiles/darknet_l.dir/examples/detector.c.o
[ 29%] Building C object CMakeFiles/darknet_s.dir/src/dropout_layer.c.o
[ 30%] Building C object CMakeFiles/darknet_l.dir/examples/dice.c.o
[ 31%] Building C object CMakeFiles/darknet_l.dir/src/gemm.c.o
[ 31%] Building C object CMakeFiles/darknet_l.dir/src/dropout_layer.c.o
[ 32%] Building C object CMakeFiles/darknet_s.dir/src/gemm.c.o
[ 32%] Building C object CMakeFiles/darknet_s.dir/examples/go.c.o
[ 33%] Building C object CMakeFiles/darknet_s.dir/src/gru_layer.c.o
[ 33%] Building C object CMakeFiles/darknet_l.dir/examples/go.c.o
[ 34%] Building C object CMakeFiles/darknet_s.dir/src/im2col.c.o
[ 34%] Building C object CMakeFiles/darknet_s.dir/src/image.c.o
[ 35%] Building C object CMakeFiles/darknet_l.dir/src/im2col.c.o
[ 36%] Building C object CMakeFiles/darknet_l.dir/src/gru_layer.c.o
/usr/home/user/darknet/src/image.c: In function 'draw_ddetections':
/usr/home/user/darknet/src/image.c:543:34: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  543 |                 sprintf(percent, 5, dets[i].prob[j] * 100);     // Supported, alternative gcvt().
      |                                  ^
      |                                  |
      |                                  int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:620:23: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  620 |         sprintf(lfps, 5, fps),
      |                       ^
      |                       |
      |                       int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:620:9: warning: passing argument 2 of 'get_label' makes pointer from integer without a cast [-Wint-conversion]
  620 |         sprintf(lfps, 5, fps),
      |         ^~~~~~~~~~~~~~~~~~~~~
      |         |
      |         int
/usr/home/user/darknet/src/image.c:133:43: note: expected 'char *' but argument is of type 'int'
  133 | image get_label(image **characters, char *string, int size)
      |                                     ~~~~~~^~~~~~
/usr/home/user/darknet/src/image.c: In function 'draw_detections':
/usr/home/user/darknet/src/image.c:657:34: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  657 |                 sprintf(percent, 5, dets[i].prob[j] * 100);
      |                                  ^
      |                                  |
      |                                  int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:727:23: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  727 |         sprintf(lfps, 5, fps),
      |                       ^
      |                       |
      |                       int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:727:9: warning: passing argument 2 of 'get_label' makes pointer from integer without a cast [-Wint-conversion]
  727 |         sprintf(lfps, 5, fps),
      |         ^~~~~~~~~~~~~~~~~~~~~
      |         |
      |         int
/usr/home/user/darknet/src/image.c:133:43: note: expected 'char *' but argument is of type 'int'
  133 | image get_label(image **characters, char *string, int size)
      |                                     ~~~~~~^~~~~~
/usr/home/user/darknet/src/image.c: In function 'draw_detections_y4':
/usr/home/user/darknet/src/image.c:782:34: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  782 |                 sprintf(percent, 5, prob * 100),
      |                                  ^
      |                                  |
      |                                  int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:796:31: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  796 |                 sprintf(lfps, 5, fps),
      |                               ^
      |                               |
      |                               int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:796:17: warning: passing argument 2 of 'get_label_y4' makes pointer from integer without a cast [-Wint-conversion]
  796 |                 sprintf(lfps, 5, fps),
      |                 ^~~~~~~~~~~~~~~~~~~~~
      |                 |
      |                 int
/usr/home/user/darknet/src/image.c:160:46: note: expected 'char *' but argument is of type 'int'
  160 | image get_label_y4(image **characters, char *string, int size)
      |                                        ~~~~~~^~~~~~
[ 36%] Building C object CMakeFiles/darknet_l.dir/src/image.c.o
[ 37%] Building C object CMakeFiles/darknet_s.dir/src/iseg_layer.c.o
[ 38%] Building C object CMakeFiles/darknet_l.dir/src/iseg_layer.c.o
/usr/home/user/darknet/src/image.c: In function 'draw_ddetections':
/usr/home/user/darknet/src/image.c:543:34: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  543 |                 sprintf(percent, 5, dets[i].prob[j] * 100);     // Supported, alternative gcvt().
      |                                  ^
      |                                  |
      |                                  int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:620:23: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  620 |         sprintf(lfps, 5, fps),
      |                       ^
      |                       |
      |                       int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:620:9: warning: passing argument 2 of 'get_label' makes pointer from integer without a cast [-Wint-conversion]
  620 |         sprintf(lfps, 5, fps),
      |         ^~~~~~~~~~~~~~~~~~~~~
      |         |
      |         int
/usr/home/user/darknet/src/image.c:133:43: note: expected 'char *' but argument is of type 'int'
  133 | image get_label(image **characters, char *string, int size)
      |                                     ~~~~~~^~~~~~
/usr/home/user/darknet/src/image.c: In function 'draw_detections':
/usr/home/user/darknet/src/image.c:657:34: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  657 |                 sprintf(percent, 5, dets[i].prob[j] * 100);
      |                                  ^
      |                                  |
      |                                  int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:727:23: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  727 |         sprintf(lfps, 5, fps),
      |                       ^
      |                       |
      |                       int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:727:9: warning: passing argument 2 of 'get_label' makes pointer from integer without a cast [-Wint-conversion]
  727 |         sprintf(lfps, 5, fps),
      |         ^~~~~~~~~~~~~~~~~~~~~
      |         |
      |         int
/usr/home/user/darknet/src/image.c:133:43: note: expected 'char *' but argument is of type 'int'
  133 | image get_label(image **characters, char *string, int size)
      |                                     ~~~~~~^~~~~~
/usr/home/user/darknet/src/image.c: In function 'draw_detections_y4':
/usr/home/user/darknet/src/image.c:782:34: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  782 |                 sprintf(percent, 5, prob * 100),
      |                                  ^
      |                                  |
      |                                  int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:796:31: warning: passing argument 2 of 'sprintf' makes pointer from integer without a cast [-Wint-conversion]
  796 |                 sprintf(lfps, 5, fps),
      |                               ^
      |                               |
      |                               int
In file included from /usr/home/user/darknet/src/image.h:5,
                 from /usr/home/user/darknet/src/image.c:1:
/usr/include/stdio.h:286:37: note: expected 'const char * restrict' but argument is of type 'int'
  286 | int      sprintf(char * __restrict, const char * __restrict, ...);
      |                                     ^
/usr/home/user/darknet/src/image.c:796:17: warning: passing argument 2 of 'get_label_y4' makes pointer from integer without a cast [-Wint-conversion]
  796 |                 sprintf(lfps, 5, fps),
      |                 ^~~~~~~~~~~~~~~~~~~~~
      |                 |
      |                 int
/usr/home/user/darknet/src/image.c:160:46: note: expected 'char *' but argument is of type 'int'
  160 | image get_label_y4(image **characters, char *string, int size)
      |                                        ~~~~~~^~~~~~
[ 38%] Building C object CMakeFiles/darknet_s.dir/examples/instance-segmenter.c.o
[ 38%] Building C object CMakeFiles/darknet_l.dir/examples/instance-segmenter.c.o
[ 39%] Building C object CMakeFiles/darknet_l.dir/src/layer.c.o
[ 40%] Building C object CMakeFiles/darknet_l.dir/src/list.c.o
[ 41%] Building C object CMakeFiles/darknet_s.dir/src/layer.c.o
[ 42%] Building C object CMakeFiles/darknet_s.dir/src/list.c.o
[ 42%] Building C object CMakeFiles/darknet_s.dir/src/local_layer.c.o
[ 43%] Building C object CMakeFiles/darknet_s.dir/src/lstm_layer.c.o
[ 43%] Building C object CMakeFiles/darknet_l.dir/src/local_layer.c.o
[ 43%] Building C object CMakeFiles/darknet_s.dir/examples/lsd.c.o
[ 44%] Building C object CMakeFiles/darknet_s.dir/examples/cgan.c.o
[ 45%] Building C object CMakeFiles/darknet_l.dir/src/lstm_layer.c.o
[ 45%] Building C object CMakeFiles/darknet_l.dir/examples/lsd.c.o
[ 46%] Building C object CMakeFiles/darknet_l.dir/examples/cgan.c.o
[ 47%] Building C object CMakeFiles/darknet_s.dir/src/matrix.c.o
[ 48%] Building C object CMakeFiles/darknet_l.dir/src/matrix.c.o
[ 48%] Building C object CMakeFiles/darknet_l.dir/src/maxpool_layer.c.o
[ 48%] Building C object CMakeFiles/darknet_s.dir/src/maxpool_layer.c.o
[ 49%] Building C object CMakeFiles/darknet_s.dir/src/network.c.o
[ 50%] Building C object CMakeFiles/darknet_l.dir/src/network.c.o
[ 50%] Building C object CMakeFiles/darknet_s.dir/examples/nightmare.c.o
[ 51%] Building C object CMakeFiles/darknet_s.dir/src/normalization_layer.c.o
[ 51%] Building C object CMakeFiles/darknet_l.dir/examples/nightmare.c.o
[ 52%] Building C object CMakeFiles/darknet_s.dir/src/option_list.c.o
[ 53%] Building C object CMakeFiles/darknet_l.dir/src/normalization_layer.c.o
[ 54%] Building C object CMakeFiles/darknet_l.dir/src/option_list.c.o
[ 54%] Building C object CMakeFiles/darknet_s.dir/src/parser.c.o
[ 54%] Building C object CMakeFiles/darknet_l.dir/src/parser.c.o
[ 55%] Building C object CMakeFiles/darknet_s.dir/src/region_layer.c.o
[ 55%] Building C object CMakeFiles/darknet_s.dir/examples/regressor.c.o
[ 56%] Building C object CMakeFiles/darknet_l.dir/src/region_layer.c.o
/usr/home/user/darknet/src/parser.c: In function 'get_classes_multipliers_y4':
/usr/home/user/darknet/src/parser.c:386:40: warning: argument 1 range [18446744071562067968, 18446744073709551615] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
  386 |         classes_multipliers = (float *)calloc(classes_counters, sizeof(float));
      |                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/home/user/darknet/src/parser.c:3:
/usr/include/stdlib.h:98:10: note: in a call to allocation function 'calloc' declared here
   98 | void    *calloc(size_t, size_t) __malloc_like __result_use_check
      |          ^~~~~~
/usr/home/user/darknet/src/parser.c: In function 'get_classes_multipliers':
/usr/home/user/darknet/src/parser.c:415:40: warning: argument 1 range [18446744071562067968, 18446744073709551615] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
  415 |         classes_multipliers = (float *)calloc(classes_counters, sizeof(float));
      |                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/home/user/darknet/src/parser.c:3:
/usr/include/stdlib.h:98:10: note: in a call to allocation function 'calloc' declared here
   98 | void    *calloc(size_t, size_t) __malloc_like __result_use_check
      |          ^~~~~~
[ 57%] Building C object CMakeFiles/darknet_s.dir/src/reorg_layer.c.o
[ 57%] Building C object CMakeFiles/darknet_l.dir/examples/regressor.c.o
[ 58%] Building C object CMakeFiles/darknet_l.dir/src/reorg_layer.c.o
[ 59%] Building C object CMakeFiles/darknet_l.dir/examples/rnn.c.o
[ 60%] Building C object CMakeFiles/darknet_s.dir/examples/rnn.c.o
[ 60%] Building C object CMakeFiles/darknet_s.dir/src/rnn_layer.c.o
[ 61%] Building C object CMakeFiles/darknet_s.dir/examples/rnn_vid.c.o
[ 61%] Building C object CMakeFiles/darknet_l.dir/src/rnn_layer.c.o
[ 61%] Building C object CMakeFiles/darknet_s.dir/src/route_layer.c.o
[ 62%] Building C object CMakeFiles/darknet_l.dir/examples/rnn_vid.c.o
[ 63%] Building C object CMakeFiles/darknet_s.dir/src/shortcut_layer.c.o
[ 63%] Building C object CMakeFiles/darknet_l.dir/src/route_layer.c.o
[ 64%] Building C object CMakeFiles/darknet_l.dir/src/shortcut_layer.c.o
[ 65%] Building C object CMakeFiles/darknet_l.dir/src/softmax_layer.c.o
[ 66%] Building C object CMakeFiles/darknet_s.dir/src/softmax_layer.c.o
[ 66%] Building C object CMakeFiles/darknet_s.dir/examples/segmenter.c.o
[ 67%] Building C object CMakeFiles/darknet_s.dir/examples/super.c.o
[ 67%] Building C object CMakeFiles/darknet_s.dir/examples/swag.c.o
[ 67%] Building C object CMakeFiles/darknet_l.dir/examples/segmenter.c.o
[ 68%] Building C object CMakeFiles/darknet_s.dir/src/system.c.o
[ 69%] Building C object CMakeFiles/darknet_l.dir/examples/super.c.o
[ 70%] Building C object CMakeFiles/darknet_s.dir/examples/tag.c.o
[ 71%] Building C object CMakeFiles/darknet_l.dir/src/system.c.o
[ 71%] Building C object CMakeFiles/darknet_l.dir/examples/swag.c.o
[ 71%] Building C object CMakeFiles/darknet_s.dir/src/tree.c.o
[ 72%] Building C object CMakeFiles/darknet_l.dir/examples/tag.c.o
[ 73%] Building C object CMakeFiles/darknet_s.dir/src/utils.c.o
[ 73%] Building C object CMakeFiles/darknet_l.dir/src/tree.c.o
[ 74%] Building C object CMakeFiles/darknet_l.dir/src/utils.c.o
[ 74%] Building C object CMakeFiles/darknet_s.dir/examples/voxel.c.o
[ 75%] Building C object CMakeFiles/darknet_s.dir/examples/writing.c.o
[ 75%] Building C object CMakeFiles/darknet_l.dir/examples/voxel.c.o
[ 76%] Building C object CMakeFiles/darknet_s.dir/examples/yolo.c.o
[ 77%] Building C object CMakeFiles/darknet_l.dir/examples/writing.c.o
[ 78%] Building C object CMakeFiles/darknet_l.dir/examples/yolo.c.o
[ 78%] Building C object CMakeFiles/darknet_s.dir/src/yolo_layer.c.o
[ 79%] Building C object CMakeFiles/darknet_s.dir/src/yolo4_layer.c.o
[ 79%] Building C object CMakeFiles/darknet_s.dir/src/upsample_layer.c.o
[ 79%] Building C object CMakeFiles/darknet_l.dir/src/yolo_layer.c.o
[ 80%] Building C object CMakeFiles/darknet_l.dir/src/yolo4_layer.c.o
[ 80%] Building C object CMakeFiles/darknet_l.dir/src/upsample_layer.c.o
[ 81%] Building C object CMakeFiles/darknet_l.dir/src/logistic_layer.c.o
[ 82%] Building C object CMakeFiles/darknet_s.dir/src/logistic_layer.c.o
[ 83%] Building C object CMakeFiles/darknet_s.dir/src/l2norm_layer.c.o
[ 84%] Building C object CMakeFiles/darknet_l.dir/src/l2norm_layer.c.o
[ 84%] Building C object CMakeFiles/darknet_s.dir/src/activation_kernels.c.o
[ 84%] Building C object CMakeFiles/darknet_l.dir/src/activation_kernels.c.o
[ 85%] Building C object CMakeFiles/darknet_l.dir/src/avgpool_layer_kernels.c.o
[ 86%] Building C object CMakeFiles/darknet_s.dir/src/avgpool_layer_kernels.c.o
[ 86%] Building C object CMakeFiles/darknet_s.dir/src/blas_kernels.c.o
[ 87%] Building C object CMakeFiles/darknet_s.dir/src/col2im_kernels.c.o
[ 88%] Building C object CMakeFiles/darknet_s.dir/src/convolutional_kernels.c.o
[ 88%] Building C object CMakeFiles/darknet_l.dir/src/blas_kernels.c.o
[ 89%] Building C object CMakeFiles/darknet_l.dir/src/col2im_kernels.c.o
[ 89%] Building C object CMakeFiles/darknet_s.dir/src/crop_layer_kernels.c.o
[ 90%] Building C object CMakeFiles/darknet_l.dir/src/convolutional_kernels.c.o
[ 90%] Building C object CMakeFiles/darknet_l.dir/src/crop_layer_kernels.c.o
[ 91%] Building C object CMakeFiles/darknet_s.dir/src/deconvolutional_kernels.c.o
[ 91%] Building C object CMakeFiles/darknet_s.dir/src/dropout_layer_kernels.c.o
[ 92%] Building C object CMakeFiles/darknet_l.dir/src/deconvolutional_kernels.c.o
[ 92%] Building C object CMakeFiles/darknet_l.dir/src/dropout_layer_kernels.c.o
[ 93%] Building C object CMakeFiles/darknet_l.dir/src/im2col_kernels.c.o
[ 94%] Building C object CMakeFiles/darknet_l.dir/src/maxpool_layer_kernels.c.o
[ 95%] Building C object CMakeFiles/darknet_s.dir/src/im2col_kernels.c.o
[ 96%] Building C object CMakeFiles/darknet_s.dir/src/maxpool_layer_kernels.c.o
[ 96%] Building C object CMakeFiles/darknet_l.dir/src/opencl.c.o
[ 96%] Building C object CMakeFiles/darknet_s.dir/src/opencl.c.o
[ 97%] Building CXX object CMakeFiles/darknet_l.dir/src/image_opencv.cpp.o
[ 98%] Building CXX object CMakeFiles/darknet_s.dir/src/image_opencv.cpp.o
[ 99%] Linking CXX static library libdarknet_s.a
[ 99%] Built target darknet_s
[100%] Linking CXX shared library libdarknet_l.so
[100%] Built target darknet_l

Not sure how to build the binaries.

Thanks.

rajhlinux commented 1 year ago

I have edited the CmakeList.txt file to let it use the Clang compiler instead of gcc:

set(CMAKE_C_COMPILER "clang")
set(CMAKE_CXX_COMPILER "clang++")

Now it seems the error for OpenCV undefined references are gone, but do get an error with the darknet binary linking:

[ 99%] Linking CXX shared library libdarknet_l.so
[ 99%] Built target darknet_l
[100%] Linking CXX static library libdarknet_s.a
[100%] Built target darknet_s
[100%] Linking CXX executable darknet
ld: error: undefined symbol: empty
>>> referenced by detector.c:756 (/usr/home/user/darknet/examples/detector.c:756)
>>>               CMakeFiles/darknet.dir/examples/detector.c.o:(test_ddetector)
>>> referenced by detector.c:756 (/usr/home/user/darknet/examples/detector.c:756)
>>>               CMakeFiles/darknet.dir/examples/detector.c.o:(test_ddetector)
>>> referenced by detector.c:756 (/usr/home/user/darknet/examples/detector.c:756)
>>>               CMakeFiles/darknet.dir/examples/detector.c.o:(test_ddetector)
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
--- darknet ---
*** [darknet] Error code 1

make[2]: stopped in /usr/home/user/darknet/build
1 error

make[2]: stopped in /usr/home/user/darknet/build
--- CMakeFiles/darknet.dir/all ---
*** [CMakeFiles/darknet.dir/all] Error code 2

make[1]: stopped in /usr/home/user/darknet/build
1 error

make[1]: stopped in /usr/home/user/darknet/build
*** [all] Error code 2

make: stopped in /usr/home/user/darknet/build
1 error

make: stopped in /usr/home/user/darknet/build

Thanks

rajhlinux commented 1 year ago

I have edited all of the src files which contains:

__linux__ to: __unix__

Now get error to undefined symbol: inotify_init:

[100%] Linking CXX static library libdarknet_s.a
[100%] Built target darknet_s
[100%] Linking CXX shared library libdarknet_l.so
[100%] Built target darknet_l
[100%] Linking CXX executable darknet
ld: error: undefined symbol: inotify_init
>>> referenced by system.c:44 (/usr/home/user/darknet/src/system.c:44)
>>>               CMakeFiles/darknet.dir/src/system.c.o:(monitor_directory)

ld: error: undefined symbol: inotify_add_watch
>>> referenced by system.c:51 (/usr/home/user/darknet/src/system.c:51)
>>>               CMakeFiles/darknet.dir/src/system.c.o:(monitor_directory)
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
--- darknet ---
*** [darknet] Error code 1

make[2]: stopped in /usr/home/user/darknet/build
1 error

make[2]: stopped in /usr/home/user/darknet/build
--- CMakeFiles/darknet.dir/all ---
*** [CMakeFiles/darknet.dir/all] Error code 2

make[1]: stopped in /usr/home/user/darknet/build
1 error

make[1]: stopped in /usr/home/user/darknet/build
*** [all] Error code 2

make: stopped in /usr/home/user/darknet/build
1 error

make: stopped in /usr/home/user/darknet/build

Thanks.

sowson commented 1 year ago

Hi, inotify is specific to Linux. Look into system.h and system.c (keep linux flag, not change to unix). Than detector.c and comment out line with monitor_directory (from system.h). And that should make binary for you ;-).

sowson commented 1 year ago

When you change the files, can you make freebsd.patch file by calling git diff > ../freebsd.patch from darknet directory and share? that allow others to reuse, thank you!

sowson commented 1 year ago

You may make a fork also... for freebsd and add as a patch or use unix to make a generic solution for this work, thank you!

rajhlinux commented 1 year ago

Hello Sowson, Thank you for replying again. :smiley:

I will make the changes as you have suggested and hopefully I can get the program to build and run. I will also create a patch as well. I will also try to run the patch as what you have messaged me.

Thanks.

rajhlinux commented 1 year ago

The compile and build process has been finally succeeded with binaries :tada::

[100%] Linking CXX static library libdarknet_s.a
[100%] Built target darknet_s
[100%] Linking CXX executable darknet
[100%] Linking CXX shared library libdarknet_l.so
[100%] Built target darknet
[100%] Built target darknet_l

I changed all flags back to __linux__.

On "system.c" file around line# 167, I changed the following:

From: #elif defined(__APPLE__)

To: #elif defined(__APPLE__) || defined(__unix__)

This allowed for the binaries to be built.

I also did not mentioned earlier that I edited the CmakeList.txt file, adding "Unix":

From: if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR "Linux")

To: if (${CMAKE_SYSTEM_NAME} MATCHES "Unix" OR "Darwin" OR "Linux") or if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR "Unix")

However, I can confirm that the edit for this on CmakeList.txt makes no difference and succeeds for compilation and builds for all. Not sure if it is better to keep with the "Unix" flag.

I have also edited the CmakeList.txt for deciding which compiler to use based on user OS.

I will create a patch.

clBLAS and clBLAST are installed on my system. I will apply: git apply patches/clblast.patch

Hope I can utilize the AMD GPU for AI/ML after months of not being able to do so on FreeBSD...

Thank You.

rajhlinux commented 1 year ago

I get the following error when trying to run the program:

$ ./darknet /cfg/yolov1.cfg /weights/yolo.weights /data/dog.jpg

Device IDs: 1
Device ID: 0
Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
Device vendor: AMD
Device opencl availability: OpenCL 1.1 Mesa 21.3.8
Device opencl used: 21.3.8
Device double precision: YES
Device max group size: 256
Device address bits: 64
Not an option: /cfg/yolov1.cfg

Segmentation fault (core dumped)

Also trying the test option:

$ ./darknet test

Device IDs: 1
Device ID: 0
Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
Device vendor: AMD
Device opencl availability: OpenCL 1.1 Mesa 21.3.8
Device opencl used: 21.3.8
Device double precision: YES
Device max group size: 256
Device address bits: 64

Segmentation fault (core dumped)

I have seen your blog video at: https://iblog.isowa.io/2018/05/26/darknet-training

However I'm not to sure how I should run the program since I do not use CLion.

I haven't installed ROCm, since FreeBSD does not have it. Is ROCm required? From my understanding is that ROCm is needed to get the latest OpenCL AMD drivers but MESA's Clover provides a valid OpenCL 1.1 AMD drivers which I installed.

Here is the complete installation log with warnings:

$ cmake ..

-- The C compiler identification is Clang 13.0.0
-- The CXX compiler identification is Clang 13.0.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- FreeBSD
-- Looking for CL_VERSION_3_0
-- Looking for CL_VERSION_3_0 - found
-- Found OpenCL: /usr/local/lib/libOpenCL.so (found version "3.0") 
-- Found OpenCV: /usr/local (found version "4.6.0") 
OpenCV LIBS: opencv_calib3dopencv_coreopencv_dnnopencv_features2dopencv_flannopencv_gapiopencv_highguiopencv_imgcodecsopencv_imgprocopencv_mlopencv_objdetectopencv_photoopencv_stitchingopencv_videoopencv_videoioopencv_alphamatopencv_arucoopencv_barcodeopencv_bgsegmopencv_bioinspiredopencv_ccalibopencv_datasetsopencv_dnn_objdetectopencv_dnn_superresopencv_dpmopencv_faceopencv_freetypeopencv_fuzzyopencv_hdfopencv_hfsopencv_img_hashopencv_intensity_transformopencv_line_descriptoropencv_mccopencv_optflowopencv_phase_unwrappingopencv_plotopencv_qualityopencv_rapidopencv_regopencv_rgbdopencv_saliencyopencv_sfmopencv_shapeopencv_stereoopencv_structured_lightopencv_superresopencv_surface_matchingopencv_textopencv_trackingopencv_videostabopencv_vizopencv_wechat_qrcodeopencv_xfeatures2dopencv_ximgprocopencv_xobjdetectopencv_xphoto
-- Configuring done
-- Generating done
-- Build files have been written to: /home/user/darknet/build

$ make -j8

[  1%] Building C object CMakeFiles/darknet_l.dir/src/activations.c.o
[  2%] Building C object CMakeFiles/darknet_s.dir/src/activation_layer.c.o
[  2%] Building C object CMakeFiles/darknet_l.dir/examples/art.c.o
[  3%] Building C object CMakeFiles/darknet_s.dir/src/activations.c.o
[  2%] Building C object CMakeFiles/darknet_s.dir/examples/art.c.o
[  3%] Building C object CMakeFiles/darknet_s.dir/examples/attention.c.o
[  3%] Building C object CMakeFiles/darknet.dir/src/activation_layer.c.o
[  3%] Building C object CMakeFiles/darknet_l.dir/src/activation_layer.c.o
[  3%] Building C object CMakeFiles/darknet.dir/src/activations.c.o
[  3%] Building C object CMakeFiles/darknet_s.dir/src/avgpool_layer.c.o
[  4%] Building C object CMakeFiles/darknet_l.dir/examples/attention.c.o
[  5%] Building C object CMakeFiles/darknet.dir/examples/art.c.o
[  5%] Building C object CMakeFiles/darknet.dir/examples/attention.c.o
[  6%] Building C object CMakeFiles/darknet_s.dir/src/batchnorm_layer.c.o
[  6%] Building C object CMakeFiles/darknet_l.dir/src/avgpool_layer.c.o
[  6%] Building C object CMakeFiles/darknet_s.dir/src/blas.c.o
[  6%] Building C object CMakeFiles/darknet_l.dir/src/batchnorm_layer.c.o
[  6%] Building C object CMakeFiles/darknet_s.dir/src/box.c.o
[  7%] Building C object CMakeFiles/darknet_l.dir/src/blas.c.o
[  7%] Building C object CMakeFiles/darknet.dir/src/avgpool_layer.c.o
[  7%] Building C object CMakeFiles/darknet_l.dir/src/box.c.o
[  8%] Building C object CMakeFiles/darknet_s.dir/examples/captcha.c.o
[  9%] Building C object CMakeFiles/darknet.dir/src/batchnorm_layer.c.o
[ 10%] Building C object CMakeFiles/darknet_l.dir/examples/captcha.c.o
[ 10%] Building C object CMakeFiles/darknet_s.dir/examples/cifar.c.o
[ 10%] Building C object CMakeFiles/darknet.dir/src/blas.c.o
[ 11%] Building C object CMakeFiles/darknet_s.dir/examples/classifier.c.o
[ 12%] Building C object CMakeFiles/darknet.dir/src/box.c.o
[ 12%] Building C object CMakeFiles/darknet_l.dir/examples/cifar.c.o
[ 12%] Building C object CMakeFiles/darknet_s.dir/examples/coco.c.o
[ 12%] Building C object CMakeFiles/darknet_s.dir/src/col2im.c.o
[ 12%] Building C object CMakeFiles/darknet.dir/examples/captcha.c.o
[ 12%] Building C object CMakeFiles/darknet_l.dir/examples/classifier.c.o
[ 12%] Building C object CMakeFiles/darknet.dir/examples/cifar.c.o
[ 13%] Building C object CMakeFiles/darknet_s.dir/src/compare.c.o
[ 14%] Building C object CMakeFiles/darknet_l.dir/examples/coco.c.o
[ 15%] Building C object CMakeFiles/darknet.dir/examples/classifier.c.o
[ 15%] Building C object CMakeFiles/darknet_l.dir/src/col2im.c.o
[ 15%] Building C object CMakeFiles/darknet_s.dir/src/connected_layer.c.o
[ 15%] Building C object CMakeFiles/darknet.dir/examples/coco.c.o
[ 16%] Building C object CMakeFiles/darknet_l.dir/src/compare.c.o
[ 16%] Building C object CMakeFiles/darknet_l.dir/src/connected_layer.c.o
[ 17%] Building C object CMakeFiles/darknet_s.dir/src/convolutional_layer.c.o
[ 18%] Building C object CMakeFiles/darknet.dir/src/col2im.c.o
[ 18%] Building C object CMakeFiles/darknet_s.dir/src/cost_layer.c.o
[ 18%] Building C object CMakeFiles/darknet_l.dir/src/convolutional_layer.c.o
[ 18%] Building C object CMakeFiles/darknet_s.dir/src/crnn_layer.c.o
[ 18%] Building C object CMakeFiles/darknet.dir/src/compare.c.o
[ 18%] Building C object CMakeFiles/darknet.dir/src/connected_layer.c.o
[ 19%] Building C object CMakeFiles/darknet_s.dir/src/crop_layer.c.o
[ 20%] Building C object CMakeFiles/darknet_l.dir/src/cost_layer.c.o
[ 20%] Building C object CMakeFiles/darknet_s.dir/src/data.c.o
[ 20%] Building C object CMakeFiles/darknet_l.dir/src/crnn_layer.c.o
[ 21%] Building C object CMakeFiles/darknet.dir/src/convolutional_layer.c.o
[ 22%] Building C object CMakeFiles/darknet_s.dir/src/deconvolutional_layer.c.o
[ 23%] Building C object CMakeFiles/darknet_l.dir/src/crop_layer.c.o
[ 23%] Building C object CMakeFiles/darknet.dir/src/cost_layer.c.o
[ 23%] Building C object CMakeFiles/darknet_l.dir/src/data.c.o
[ 24%] Building C object CMakeFiles/darknet.dir/src/crnn_layer.c.o
[ 24%] Building C object CMakeFiles/darknet_s.dir/src/demo.c.o
[ 24%] Building C object CMakeFiles/darknet_l.dir/src/deconvolutional_layer.c.o
[ 24%] Building C object CMakeFiles/darknet.dir/src/crop_layer.c.o
[ 24%] Building C object CMakeFiles/darknet_s.dir/src/detection_layer.c.o
[ 25%] Building C object CMakeFiles/darknet_l.dir/src/demo.c.o
[ 25%] Building C object CMakeFiles/darknet.dir/src/data.c.o
[ 26%] Building C object CMakeFiles/darknet_s.dir/examples/detector.c.o
[ 26%] Building C object CMakeFiles/darknet_l.dir/src/detection_layer.c.o
[ 27%] Building C object CMakeFiles/darknet_l.dir/examples/detector.c.o
[ 27%] Building C object CMakeFiles/darknet_s.dir/examples/dice.c.o
[ 28%] Building C object CMakeFiles/darknet.dir/src/deconvolutional_layer.c.o
[ 28%] Building C object CMakeFiles/darknet_l.dir/examples/dice.c.o
[ 28%] Building C object CMakeFiles/darknet.dir/src/demo.c.o
[ 29%] Building C object CMakeFiles/darknet_s.dir/src/dropout_layer.c.o
[ 29%] Building C object CMakeFiles/darknet_l.dir/src/dropout_layer.c.o
[ 30%] Building C object CMakeFiles/darknet.dir/src/detection_layer.c.o
[ 31%] Building C object CMakeFiles/darknet_l.dir/src/gemm.c.o
[ 31%] Building C object CMakeFiles/darknet_s.dir/src/gemm.c.o
[ 31%] Building C object CMakeFiles/darknet.dir/examples/detector.c.o
/home/user/darknet/src/gemm.c:35:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
/home/user/darknet/src/gemm.c:199:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
[ 31%] Building C object CMakeFiles/darknet_s.dir/examples/go.c.o
/home/user/darknet/src/gemm.c:35:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
/home/user/darknet/src/gemm.c:199:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
[ 31%] Building C object CMakeFiles/darknet.dir/examples/dice.c.o
[ 31%] Building C object CMakeFiles/darknet_l.dir/examples/go.c.o
[ 32%] Building C object CMakeFiles/darknet_s.dir/src/gru_layer.c.o
2 warnings generated.
[ 33%] Building C object CMakeFiles/darknet.dir/src/dropout_layer.c.o
[ 34%] Building C object CMakeFiles/darknet_l.dir/src/gru_layer.c.o
2 warnings generated.
[ 34%] Building C object CMakeFiles/darknet_s.dir/src/im2col.c.o
[ 34%] Building C object CMakeFiles/darknet_l.dir/src/im2col.c.o
[ 35%] Building C object CMakeFiles/darknet_s.dir/src/image.c.o
[ 35%] Building C object CMakeFiles/darknet_l.dir/src/image.c.o
[ 35%] Building C object CMakeFiles/darknet.dir/src/gemm.c.o
[ 35%] Building C object CMakeFiles/darknet_s.dir/src/iseg_layer.c.o
/home/user/darknet/src/gemm.c:35:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
[ 36%] Building C object CMakeFiles/darknet_l.dir/src/iseg_layer.c.o
/home/user/darknet/src/gemm.c:199:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
/home/user/darknet/src/image.c:543:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, dets[i].prob[j] * 100);     // Supported, alternative gcvt().
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:620:23: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
                      ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:620:9: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
        ^~~~~~~~~~~~~~~~~~~~~
/home/user/darknet/src/image.c:133:43: note: passing argument to parameter 'string' here
image get_label(image **characters, char *string, int size)
                                          ^
/home/user/darknet/src/image.c:657:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, dets[i].prob[j] * 100);
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:727:23: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
                      ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:727:9: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
        ^~~~~~~~~~~~~~~~~~~~~
/home/user/darknet/src/image.c:133:43: note: passing argument to parameter 'string' here
image get_label(image **characters, char *string, int size)
                                          ^
/home/user/darknet/src/image.c:782:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, prob * 100),
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:796:31: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(lfps, 5, fps),
                              ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:796:17: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
                sprintf(lfps, 5, fps),
                ^~~~~~~~~~~~~~~~~~~~~
/home/user/darknet/src/image.c:160:46: note: passing argument to parameter 'string' here
image get_label_y4(image **characters, char *string, int size)
                                             ^
[ 36%] Building C object CMakeFiles/darknet_l.dir/examples/instance-segmenter.c.o
/home/user/darknet/src/image.c:543:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, dets[i].prob[j] * 100);     // Supported, alternative gcvt().
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:620:23: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
                      ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:620:9: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
        ^~~~~~~~~~~~~~~~~~~~~
/home/user/darknet/src/image.c:133:43: note: passing argument to parameter 'string' here
image get_label(image **characters, char *string, int size)
                                          ^
/home/user/darknet/src/image.c:657:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, dets[i].prob[j] * 100);
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:727:23: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
                      ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:727:9: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
        ^~~~~~~~~~~~~~~~~~~~~
/home/user/darknet/src/image.c:133:43: note: passing argument to parameter 'string' here
image get_label(image **characters, char *string, int size)
                                          ^
/home/user/darknet/src/image.c:782:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, prob * 100),
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:796:31: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(lfps, 5, fps),
                              ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:796:17: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
                sprintf(lfps, 5, fps),
                ^~~~~~~~~~~~~~~~~~~~~
/home/user/darknet/src/image.c:160:46: note: passing argument to parameter 'string' here
image get_label_y4(image **characters, char *string, int size)
                                             ^
[ 37%] Building C object CMakeFiles/darknet.dir/examples/go.c.o
[ 37%] Building C object CMakeFiles/darknet_s.dir/examples/instance-segmenter.c.o
[ 37%] Building C object CMakeFiles/darknet.dir/src/gru_layer.c.o
[ 38%] Building C object CMakeFiles/darknet_s.dir/src/layer.c.o
2 warnings generated.
[ 39%] Building C object CMakeFiles/darknet_l.dir/src/layer.c.o
[ 39%] Building C object CMakeFiles/darknet_s.dir/src/list.c.o
[ 39%] Building C object CMakeFiles/darknet_l.dir/src/list.c.o
[ 39%] Building C object CMakeFiles/darknet.dir/src/im2col.c.o
[ 40%] Building C object CMakeFiles/darknet_s.dir/src/local_layer.c.o
[ 41%] Building C object CMakeFiles/darknet.dir/src/image.c.o
[ 41%] Building C object CMakeFiles/darknet_s.dir/src/lstm_layer.c.o
[ 41%] Building C object CMakeFiles/darknet_l.dir/src/local_layer.c.o
[ 41%] Building C object CMakeFiles/darknet_s.dir/examples/lsd.c.o
[ 42%] Building C object CMakeFiles/darknet_l.dir/src/lstm_layer.c.o
/home/user/darknet/src/image.c:543:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, dets[i].prob[j] * 100);     // Supported, alternative gcvt().
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:620:23: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
                      ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:620:9: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
        ^~~~~~~~~~~~~~~~~~~~~
[ 43%] Building C object CMakeFiles/darknet_s.dir/examples/cgan.c.o
/home/user/darknet/src/image.c:133:43: note: passing argument to parameter 'string' here
image get_label(image **characters, char *string, int size)
                                          ^
/home/user/darknet/src/image.c:657:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, dets[i].prob[j] * 100);
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:727:23: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
                      ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:727:9: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
        sprintf(lfps, 5, fps),
        ^~~~~~~~~~~~~~~~~~~~~
/home/user/darknet/src/image.c:133:43: note: passing argument to parameter 'string' here
image get_label(image **characters, char *string, int size)
                                          ^
/home/user/darknet/src/image.c:782:34: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(percent, 5, prob * 100),
                                 ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:796:31: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'const char *' [-Wint-conversion]
                sprintf(lfps, 5, fps),
                              ^
/usr/include/stdio.h:286:56: note: passing argument to parameter here
int      sprintf(char * __restrict, const char * __restrict, ...);
                                                           ^
/home/user/darknet/src/image.c:796:17: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
                sprintf(lfps, 5, fps),
                ^~~~~~~~~~~~~~~~~~~~~
/home/user/darknet/src/image.c:160:46: note: passing argument to parameter 'string' here
image get_label_y4(image **characters, char *string, int size)
                                             ^
[ 43%] Building C object CMakeFiles/darknet_l.dir/examples/lsd.c.o
[ 43%] Building C object CMakeFiles/darknet.dir/src/iseg_layer.c.o
[ 44%] Building C object CMakeFiles/darknet_l.dir/examples/cgan.c.o
[ 45%] Building C object CMakeFiles/darknet.dir/examples/instance-segmenter.c.o
[ 45%] Building C object CMakeFiles/darknet_s.dir/src/matrix.c.o
[ 45%] Building C object CMakeFiles/darknet.dir/src/layer.c.o
[ 46%] Building C object CMakeFiles/darknet_s.dir/src/maxpool_layer.c.o
[ 46%] Building C object CMakeFiles/darknet.dir/src/list.c.o
[ 46%] Building C object CMakeFiles/darknet_s.dir/src/network.c.o
[ 46%] Building C object CMakeFiles/darknet_l.dir/src/matrix.c.o
[ 46%] Building C object CMakeFiles/darknet_s.dir/examples/nightmare.c.o
[ 46%] Building C object CMakeFiles/darknet_l.dir/src/maxpool_layer.c.o
[ 47%] Building C object CMakeFiles/darknet.dir/src/local_layer.c.o
[ 48%] Building C object CMakeFiles/darknet_s.dir/src/normalization_layer.c.o
[ 48%] Building C object CMakeFiles/darknet.dir/src/lstm_layer.c.o
[ 48%] Building C object CMakeFiles/darknet_s.dir/src/option_list.c.o
[ 49%] Building C object CMakeFiles/darknet.dir/examples/lsd.c.o
[ 49%] Building C object CMakeFiles/darknet_l.dir/examples/nightmare.c.o
[ 50%] Building C object CMakeFiles/darknet_l.dir/src/network.c.o
[ 50%] Building C object CMakeFiles/darknet.dir/examples/cgan.c.o
[ 50%] Building C object CMakeFiles/darknet_s.dir/src/parser.c.o
[ 50%] Building C object CMakeFiles/darknet_l.dir/src/normalization_layer.c.o
[ 51%] Building C object CMakeFiles/darknet_s.dir/src/region_layer.c.o
[ 52%] Building C object CMakeFiles/darknet_l.dir/src/option_list.c.o
[ 52%] Building C object CMakeFiles/darknet.dir/src/matrix.c.o
[ 52%] Building C object CMakeFiles/darknet_s.dir/examples/regressor.c.o
[ 52%] Building C object CMakeFiles/darknet_l.dir/src/parser.c.o
[ 53%] Building C object CMakeFiles/darknet.dir/src/maxpool_layer.c.o
[ 54%] Building C object CMakeFiles/darknet_l.dir/src/region_layer.c.o
[ 54%] Building C object CMakeFiles/darknet.dir/src/network.c.o
[ 55%] Building C object CMakeFiles/darknet_s.dir/src/reorg_layer.c.o
[ 55%] Building C object CMakeFiles/darknet_l.dir/examples/regressor.c.o
[ 55%] Building C object CMakeFiles/darknet_s.dir/examples/rnn.c.o
[ 55%] Building C object CMakeFiles/darknet.dir/examples/nightmare.c.o
[ 55%] Building C object CMakeFiles/darknet_s.dir/src/rnn_layer.c.o
[ 55%] Building C object CMakeFiles/darknet_l.dir/src/reorg_layer.c.o
[ 56%] Building C object CMakeFiles/darknet.dir/src/normalization_layer.c.o
[ 57%] Building C object CMakeFiles/darknet_s.dir/examples/rnn_vid.c.o
[ 58%] Building C object CMakeFiles/darknet_l.dir/examples/rnn.c.o
[ 58%] Building C object CMakeFiles/darknet_s.dir/src/route_layer.c.o
[ 58%] Building C object CMakeFiles/darknet.dir/src/option_list.c.o
[ 59%] Building C object CMakeFiles/darknet.dir/src/parser.c.o
[ 59%] Building C object CMakeFiles/darknet_l.dir/src/rnn_layer.c.o
[ 59%] Building C object CMakeFiles/darknet.dir/src/region_layer.c.o
[ 60%] Building C object CMakeFiles/darknet_s.dir/src/shortcut_layer.c.o
[ 60%] Building C object CMakeFiles/darknet.dir/examples/regressor.c.o
[ 61%] Building C object CMakeFiles/darknet_l.dir/examples/rnn_vid.c.o
[ 62%] Building C object CMakeFiles/darknet.dir/src/reorg_layer.c.o
[ 62%] Building C object CMakeFiles/darknet_s.dir/src/softmax_layer.c.o
[ 62%] Building C object CMakeFiles/darknet_l.dir/src/route_layer.c.o
[ 62%] Building C object CMakeFiles/darknet.dir/examples/rnn.c.o
[ 62%] Building C object CMakeFiles/darknet_l.dir/src/shortcut_layer.c.o
[ 62%] Building C object CMakeFiles/darknet_s.dir/examples/segmenter.c.o
[ 63%] Building C object CMakeFiles/darknet_s.dir/examples/super.c.o
[ 64%] Building C object CMakeFiles/darknet.dir/src/rnn_layer.c.o
[ 65%] Building C object CMakeFiles/darknet_l.dir/src/softmax_layer.c.o
[ 65%] Building C object CMakeFiles/darknet.dir/examples/rnn_vid.c.o
[ 65%] Building C object CMakeFiles/darknet_l.dir/examples/segmenter.c.o
[ 65%] Building C object CMakeFiles/darknet_s.dir/examples/swag.c.o
[ 66%] Building C object CMakeFiles/darknet_l.dir/examples/super.c.o
[ 66%] Building C object CMakeFiles/darknet.dir/src/route_layer.c.o
[ 66%] Building C object CMakeFiles/darknet_l.dir/examples/swag.c.o
[ 67%] Building C object CMakeFiles/darknet.dir/src/shortcut_layer.c.o
[ 68%] Building C object CMakeFiles/darknet_s.dir/src/system.c.o
[ 68%] Building C object CMakeFiles/darknet_s.dir/examples/tag.c.o
[ 68%] Building C object CMakeFiles/darknet.dir/src/softmax_layer.c.o
[ 68%] Building C object CMakeFiles/darknet_l.dir/src/system.c.o
[ 68%] Building C object CMakeFiles/darknet_s.dir/src/tree.c.o
[ 69%] Building C object CMakeFiles/darknet.dir/examples/segmenter.c.o
[ 70%] Building C object CMakeFiles/darknet_s.dir/src/utils.c.o
[ 71%] Building C object CMakeFiles/darknet_l.dir/examples/tag.c.o
/home/user/darknet/src/utils.c:849:27: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
[ 71%] Building C object CMakeFiles/darknet_l.dir/src/tree.c.o
    return ((float)rand()/RAND_MAX * (max - min)) + min;
                         ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
[ 72%] Building C object CMakeFiles/darknet_l.dir/src/utils.c.o
[ 72%] Building C object CMakeFiles/darknet_s.dir/examples/voxel.c.o
[ 72%] Building C object CMakeFiles/darknet.dir/examples/super.c.o
/home/user/darknet/src/utils.c:849:27: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
    return ((float)rand()/RAND_MAX * (max - min)) + min;
                         ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
[ 72%] Building C object CMakeFiles/darknet_l.dir/examples/voxel.c.o
[ 73%] Building C object CMakeFiles/darknet_s.dir/examples/writing.c.o
[ 73%] Building C object CMakeFiles/darknet.dir/examples/swag.c.o
[ 73%] Building C object CMakeFiles/darknet_l.dir/examples/writing.c.o
[ 74%] Building C object CMakeFiles/darknet.dir/src/system.c.o
[ 74%] Building C object CMakeFiles/darknet_s.dir/examples/yolo.c.o
[ 74%] Building C object CMakeFiles/darknet.dir/examples/tag.c.o
[ 74%] Building C object CMakeFiles/darknet_s.dir/src/yolo_layer.c.o
1 warning generated.
[ 75%] Building C object CMakeFiles/darknet_l.dir/examples/yolo.c.o
[ 76%] Building C object CMakeFiles/darknet_s.dir/src/yolo4_layer.c.o
1 warning generated.
[ 77%] Building C object CMakeFiles/darknet.dir/src/tree.c.o
[ 77%] Building C object CMakeFiles/darknet_l.dir/src/yolo_layer.c.o
[ 77%] Building C object CMakeFiles/darknet.dir/src/utils.c.o
[ 78%] Building C object CMakeFiles/darknet_l.dir/src/yolo4_layer.c.o
[ 78%] Building C object CMakeFiles/darknet_s.dir/src/upsample_layer.c.o
/home/user/darknet/src/utils.c:849:27: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
    return ((float)rand()/RAND_MAX * (max - min)) + min;
                         ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
[ 78%] Building C object CMakeFiles/darknet_l.dir/src/upsample_layer.c.o
[ 79%] Building C object CMakeFiles/darknet_s.dir/src/logistic_layer.c.o
[ 79%] Building C object CMakeFiles/darknet.dir/examples/voxel.c.o
[ 79%] Building C object CMakeFiles/darknet_l.dir/src/logistic_layer.c.o
[ 80%] Building C object CMakeFiles/darknet.dir/examples/writing.c.o
[ 81%] Building C object CMakeFiles/darknet_l.dir/src/l2norm_layer.c.o
[ 81%] Building C object CMakeFiles/darknet_s.dir/src/l2norm_layer.c.o
[ 81%] Building C object CMakeFiles/darknet_s.dir/src/cpu.c.o
[ 81%] Building C object CMakeFiles/darknet.dir/examples/yolo.c.o
[ 81%] Building C object CMakeFiles/darknet_l.dir/src/cpu.c.o
[ 82%] Building C object CMakeFiles/darknet.dir/src/yolo_layer.c.o
1 warning generated.
[ 83%] Building C object CMakeFiles/darknet_s.dir/src/activation_kernels.c.o
[ 83%] Building C object CMakeFiles/darknet.dir/src/yolo4_layer.c.o
[ 83%] Building C object CMakeFiles/darknet.dir/src/upsample_layer.c.o
[ 83%] Building C object CMakeFiles/darknet_s.dir/src/avgpool_layer_kernels.c.o
[ 84%] Building C object CMakeFiles/darknet_l.dir/src/activation_kernels.c.o
[ 84%] Building C object CMakeFiles/darknet_l.dir/src/avgpool_layer_kernels.c.o
[ 84%] Building C object CMakeFiles/darknet_l.dir/src/blas_kernels.c.o
[ 85%] Building C object CMakeFiles/darknet_s.dir/src/blas_kernels.c.o
[ 86%] Building C object CMakeFiles/darknet.dir/src/logistic_layer.c.o
[ 86%] Building C object CMakeFiles/darknet_s.dir/src/col2im_kernels.c.o
[ 87%] Building C object CMakeFiles/darknet_l.dir/src/col2im_kernels.c.o
[ 87%] Building C object CMakeFiles/darknet_s.dir/src/convolutional_kernels.c.o
[ 87%] Building C object CMakeFiles/darknet.dir/src/l2norm_layer.c.o
[ 88%] Building C object CMakeFiles/darknet_s.dir/src/crop_layer_kernels.c.o
[ 88%] Building C object CMakeFiles/darknet_l.dir/src/convolutional_kernels.c.o
[ 89%] Building C object CMakeFiles/darknet.dir/src/cpu.c.o
[ 90%] Building C object CMakeFiles/darknet_l.dir/src/crop_layer_kernels.c.o
[ 90%] Building C object CMakeFiles/darknet_s.dir/src/deconvolutional_kernels.c.o
[ 90%] Building C object CMakeFiles/darknet_l.dir/src/deconvolutional_kernels.c.o
[ 90%] Building C object CMakeFiles/darknet.dir/src/activation_kernels.c.o
[ 91%] Building C object CMakeFiles/darknet_s.dir/src/dropout_layer_kernels.c.o
[ 91%] Building C object CMakeFiles/darknet.dir/src/avgpool_layer_kernels.c.o
[ 91%] Building C object CMakeFiles/darknet_l.dir/src/dropout_layer_kernels.c.o
[ 91%] Building C object CMakeFiles/darknet_s.dir/src/im2col_kernels.c.o
[ 92%] Building C object CMakeFiles/darknet.dir/src/blas_kernels.c.o
[ 93%] Building C object CMakeFiles/darknet_l.dir/src/im2col_kernels.c.o
[ 93%] Building C object CMakeFiles/darknet.dir/src/col2im_kernels.c.o
[ 93%] Building C object CMakeFiles/darknet_s.dir/src/maxpool_layer_kernels.c.o
[ 93%] Building C object CMakeFiles/darknet_l.dir/src/maxpool_layer_kernels.c.o
[ 94%] Building C object CMakeFiles/darknet.dir/src/convolutional_kernels.c.o
[ 95%] Building C object CMakeFiles/darknet_s.dir/src/opencl.c.o
[ 96%] Building C object CMakeFiles/darknet_l.dir/src/opencl.c.o
[ 96%] Building C object CMakeFiles/darknet.dir/src/crop_layer_kernels.c.o
/home/user/darknet/src/opencl.c:911:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
/home/user/darknet/src/opencl.c:911:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
[ 96%] Building CXX object CMakeFiles/darknet_l.dir/src/image_opencv.cpp.o
[ 96%] Building CXX object CMakeFiles/darknet_s.dir/src/image_opencv.cpp.o
1 warning generated.
1 warning generated.
[ 96%] Building C object CMakeFiles/darknet.dir/src/deconvolutional_kernels.c.o
[ 97%] Building C object CMakeFiles/darknet.dir/src/dropout_layer_kernels.c.o
[ 97%] Building C object CMakeFiles/darknet.dir/src/im2col_kernels.c.o
[ 98%] Building C object CMakeFiles/darknet.dir/src/maxpool_layer_kernels.c.o
[ 98%] Building C object CMakeFiles/darknet.dir/src/opencl.c.o
[ 98%] Building CXX object CMakeFiles/darknet.dir/src/image_opencv.cpp.o
[ 99%] Building C object CMakeFiles/darknet.dir/examples/darknet.c.o
/home/user/darknet/src/opencl.c:911:30: warning: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Wimplicit-const-int-float-conversion]
        m[i] = (float)rand()/RAND_MAX;
                            ~^~~~~~~~
/usr/include/stdlib.h:80:18: note: expanded from macro 'RAND_MAX'
#define RAND_MAX        0x7fffffff
                        ^~~~~~~~~~
9 warnings generated.
9 warnings generated.
1 warning generated.
9 warnings generated.
[ 99%] Linking CXX shared library libdarknet_l.so
[ 99%] Built target darknet_l
[100%] Linking CXX static library libdarknet_s.a
[100%] Built target darknet_s
[100%] Linking CXX executable darknet
[100%] Built target darknet

I have also tried to run your patch but got error:

~/darknet $ git apply /home/user/Desktop/freebsd.patch:

error: patch failed: src/image.c:537
error: src/image.c: patch does not apply
error: patch failed: src/opencl.c:404
error: src/opencl.c: patch does not apply
error: patch failed: src/system.c:34
error: src/system.c: patch does not apply
error: patch failed: src/system.h:1
error: src/system.h: patch does not apply

Thanks.

sowson commented 1 year ago

$ grep .idea/workspace.xml | grep bindarknet | grep configuration

On 10 Oct 2022, at 09:17, Unixxx @.***> wrote:

I get the following error when trying to run the program:

$ /home/user/darknet/build/darknet /usr/home/user/darknet/cfg/yolov1.cfg /usr/home/user/darknet/weights/yolo.weights /home/user/darknet/data/dog.jpg

Device IDs: 1 Device ID: 0 Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1) Device vendor: AMD Device opencl availability: OpenCL 1.1 Mesa 21.3.8 Device opencl used: 21.3.8 Device double precision: YES Device max group size: 256 Device address bits: 64 Not an option: /usr/home/user/darknet/cfg/yolov1.cfg Segmentation fault (core dumped) Thanks.

— Reply to this email directly, view it on GitHub https://github.com/sowson/darknet/issues/79#issuecomment-1272877841, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIC6NQANG4QCYI5KME5U5GTWCO7JFANCNFSM6AAAAAAQ7IPBXA. You are receiving this because you commented.

rajhlinux commented 1 year ago

Hello Sowa, Thank You for replying.

I have entered:

$ grep .idea/workspace.xml | grep bindarknet | grep configuration

to the root directory of "darknet" folder and nothing happens...

screenshot

Entering:

$ tail -f .idea/workspace.xml

Shows this:

        </breakpoint>
        <breakpoint enabled="true" type="CidrExceptionBreakpoint" />
      </default-breakpoints>
    </breakpoint-manager>
  </component>
  <component name="XSLT-Support.FileAssociations.UIState">
    <expand />
    <select />
  </component>
</project>

So it seems the file which needs to be searched is hidden. I have managed to view the file on VS-Code editor, here are the entire contents of the file .idea/workspace.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="AutoImportSettings">
    <option name="autoReloadType" value="SELECTIVE" />
  </component>
  <component name="CMakeReloadState">
    <option name="reloaded" value="true" />
  </component>
  <component name="CMakeRunConfigurationManager">
    <generated>
      <config projectName="darknet" targetName="darknet_l" />
      <config projectName="darknet" targetName="darknet_s" />
      <config projectName="darknet" targetName="darknet" />
    </generated>
  </component>
  <component name="CMakeSettings">
    <configurations>
      <configuration PROFILE_NAME="RelWithDebInfo" ENABLED="true" CONFIG_NAME="RelWithDebInfo" BUILD_OPTIONS="-v" />
    </configurations>
  </component>
  <component name="ChangeListManager">
    <list default="true" id="5c1f2602-dc6e-4bd5-b03e-d07ee3b8a66f" name="Default Changelist" comment="">
      <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
      <change beforePath="$PROJECT_DIR$/CMakeLists.txt" beforeDir="false" afterPath="$PROJECT_DIR$/CMakeLists.txt" afterDir="false" />
      <change beforePath="$PROJECT_DIR$/src/blas_kernels.c" beforeDir="false" afterPath="$PROJECT_DIR$/src/blas_kernels.c" afterDir="false" />
      <change beforePath="$PROJECT_DIR$/src/blas_kernels_3.cl" beforeDir="false" afterPath="$PROJECT_DIR$/src/blas_kernels_3.cl" afterDir="false" />
      <change beforePath="$PROJECT_DIR$/src/opencl.c" beforeDir="false" afterPath="$PROJECT_DIR$/src/opencl.c" afterDir="false" />
      <change beforePath="$PROJECT_DIR$/src/opencl.h" beforeDir="false" afterPath="$PROJECT_DIR$/src/opencl.h" afterDir="false" />
    </list>
    <option name="SHOW_DIALOG" value="false" />
    <option name="HIGHLIGHT_CONFLICTS" value="true" />
    <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
    <option name="LAST_RESOLUTION" value="IGNORE" />
  </component>
  <component name="ClangdSettings">
    <option name="formatViaClangd" value="false" />
  </component>
  <component name="ExecutionTargetManager" SELECTED_TARGET="CMakeBuildProfile:RelWithDebInfo" />
  <component name="Git.Settings">
    <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
  </component>
  <component name="MarkdownSettingsMigration">
    <option name="stateVersion" value="1" />
  </component>
  <component name="OCFindUsagesOptions" text="false" ivars="false" properties="true" derivedClasses="false" />
  <component name="ProblemsViewState">
    <option name="selectedTabId" value="ProjectErrors" />
  </component>
  <component name="ProjectId" id="1SYpmm00EtxGNgVFxYjyIi0e8EC" />
  <component name="ProjectViewState">
    <option name="hideEmptyMiddlePackages" value="true" />
    <option name="showLibraryContents" value="true" />
  </component>
  <component name="PropertiesComponent">{
  &quot;keyToString&quot;: {
    &quot;RunOnceActivity.OpenProjectViewOnStart&quot;: &quot;true&quot;,
    &quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
    &quot;RunOnceActivity.cidr.known.project.marker&quot;: &quot;true&quot;,
    &quot;WebServerToolWindowFactoryState&quot;: &quot;false&quot;,
    &quot;cf.first.check.clang-format&quot;: &quot;false&quot;,
    &quot;cidr.known.project.marker&quot;: &quot;true&quot;,
    &quot;cmake.loaded.for.project&quot;: &quot;true&quot;,
    &quot;run.code.analysis.last.selected.profile&quot;: &quot;pProject Default&quot;
  }
}</component>
  <component name="RecentsManager">
    <key name="CopyFile.RECENT_KEYS">
      <recent name="$PROJECT_DIR$/data" />
      <recent name="$PROJECT_DIR$/src" />
      <recent name="$PROJECT_DIR$/cfg" />
    </key>
    <key name="MoveFile.RECENT_KEYS">
      <recent name="C:\GitHub\sowson\darknet\3rdparty\OpenCV\include\opencv2\highgui" />
    </key>
  </component>
  <component name="RunManager" selected="CMake Application.bindarknet (tcifar)">
    <configuration default="true" type="GradleAppRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true">
      <method v="2">
        <option name="com.jetbrains.cidr.cpp.gradle.execution.GradleNativeBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="Build All" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet" EXPLICIT_BUILD_TARGET_NAME="all">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration default="true" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv1Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo demo cfg/yolov1.cfg ../../../weights/yolov1.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo test cfg/yolov1.cfg ../../../weights/yolov1.weights data/dog.jpg -thresh 0.15 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv2Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights ../../../car_vlog.mp4 -thresh .35 -i 1" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv2Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv3-sppDemo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3-spp.cfg ../../../weights/yolov3-spp.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv3-spp)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov3-spp.cfg ../../../weights/yolov3-spp.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv3Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights ../../../car_vlog.mp4 -thresh .35 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv3Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4CX)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-csp-x-swish.cfg ../../../weights/yolov4-csp-x-swish.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4C)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-csp.cfg ../../../weights/yolov4-csp.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights ../../../car_vlog.mp4 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4Demo) (odir)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="ddetect cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights $USER_HOME$/yolo4In -out $USER_HOME$/yolo4Out -i 0 -thresh .25 -margin 2" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4Demo) " type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4P5)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-p5.cfg ../../../weights/yolov4-p5.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4P6)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-p6.cfg ../../../weights/yolov4-p6.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4TDemo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights ../../../car_vlog.mp4 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4TDemo)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4XM)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4x-mish.cfg ../../../weights/yolov4x-mish.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv4)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (Yv5L)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov5l_v4.cfg ../../../weights/yolov5l_v4.weights data/dog.jpg -thresh .35 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (cifar) (try1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/6298_cat.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (cifar) (try2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/4882_frog.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (cifar) (try3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/2568_truck.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (cifar) (try4)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/5238_bird.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (cifar) (try5)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/train/35728_automobile.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv1) (cnt.)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="yolo train yolov1.cfg voc.data backup1/yolov1.backup -gpus 0,1,2,3" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo train yolov1.cfg voc.data darknet.conv.weights -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv2) (cnt.)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train voc.data yolov2-voc.cfg backup/yolov2-voc.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector train coco.data yolov2-voc.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv3) (cnt)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train voc.data yolov3-voc.cfg backup/yolov3-voc.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector train voc.data yolov3-voc.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv4) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4-tiny.cfg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv4) (cnt) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4-tiny.cfg backup/yolov4-tiny.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv4) (cnt)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4.cfg backup/yolov4.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv4)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tYv5l) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov5l_v4.cfg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tcifar) (d19)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="classifier train cfg/cifar.data cfg/darknet19.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tcifar) (valid)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier valid cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights -i 1" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="bindarknet (tcifar)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier train cfg/cifar.data cfg/cifar_small.cfg -gpus 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="darknet" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="darknet_l" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet_l" CONFIG_NAME="RelWithDebInfo">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <configuration name="darknet_s" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet_s" CONFIG_NAME="RelWithDebInfo">
      <method v="2">
        <option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
      </method>
    </configuration>
    <list>
      <item itemvalue="CMake Application.Build All" />
      <item itemvalue="CMake Application.bindarknet (Yv1Demo)" />
      <item itemvalue="CMake Application.bindarknet (Yv1)" />
      <item itemvalue="CMake Application.bindarknet (Yv2Demo) (car)" />
      <item itemvalue="CMake Application.bindarknet (Yv2Demo)" />
      <item itemvalue="CMake Application.bindarknet (Yv2)" />
      <item itemvalue="CMake Application.bindarknet (Yv3-sppDemo)" />
      <item itemvalue="CMake Application.bindarknet (Yv3-spp)" />
      <item itemvalue="CMake Application.bindarknet (Yv3Demo) (car)" />
      <item itemvalue="CMake Application.bindarknet (Yv3)" />
      <item itemvalue="CMake Application.bindarknet (Yv3Demo)" />
      <item itemvalue="CMake Application.bindarknet (Yv4Demo) (car)" />
      <item itemvalue="CMake Application.bindarknet (Yv4TDemo) (car)" />
      <item itemvalue="CMake Application.bindarknet (Yv4Demo) " />
      <item itemvalue="CMake Application.bindarknet (Yv4TDemo)" />
      <item itemvalue="CMake Application.bindarknet (Yv4)" />
      <item itemvalue="CMake Application.bindarknet (Yv4T)" />
      <item itemvalue="CMake Application.bindarknet (Yv4C)" />
      <item itemvalue="CMake Application.bindarknet (Yv4CX)" />
      <item itemvalue="CMake Application.bindarknet (Yv4XM)" />
      <item itemvalue="CMake Application.bindarknet (Yv4P5)" />
      <item itemvalue="CMake Application.bindarknet (Yv4P6)" />
      <item itemvalue="CMake Application.bindarknet (Yv5L)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try1)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try2)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try3)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try4)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try5)" />
      <item itemvalue="CMake Application.bindarknet (tYv1) (cnt.)" />
      <item itemvalue="CMake Application.bindarknet (tYv1)" />
      <item itemvalue="CMake Application.bindarknet (tYv2) (cnt.)" />
      <item itemvalue="CMake Application.bindarknet (tYv2)" />
      <item itemvalue="CMake Application.bindarknet (tYv3)" />
      <item itemvalue="CMake Application.bindarknet (tYv3) (cnt)" />
      <item itemvalue="CMake Application.bindarknet (tYv4) (cnt)" />
      <item itemvalue="CMake Application.bindarknet (tYv4)" />
      <item itemvalue="CMake Application.bindarknet (tYv4) (cnt) (T)" />
      <item itemvalue="CMake Application.bindarknet (tYv4) (T)" />
      <item itemvalue="CMake Application.bindarknet (tYv5l) (T)" />
      <item itemvalue="CMake Application.bindarknet (Yv4Demo) (odir)" />
      <item itemvalue="CMake Application.bindarknet (tcifar) (d19)" />
      <item itemvalue="CMake Application.bindarknet (tcifar) (valid)" />
      <item itemvalue="CMake Application.bindarknet (tcifar)" />
      <item itemvalue="CMake Application.darknet" />
      <item itemvalue="CMake Application.darknet_l" />
      <item itemvalue="CMake Application.darknet_s" />
    </list>
  </component>
  <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
  <component name="SvnConfiguration">
    <configuration />
  </component>
  <component name="TaskManager">
    <task active="true" id="Default" summary="Default task">
      <changelist id="5c1f2602-dc6e-4bd5-b03e-d07ee3b8a66f" name="Default Changelist" comment="" />
      <created>1532721917849</created>
      <option name="number" value="Default" />
      <option name="presentableId" value="Default" />
      <updated>1532721917849</updated>
      <workItem from="1532721923906" duration="41000" />
      <workItem from="1533071582343" duration="14000" />
      <workItem from="1533072395045" duration="2200000" />
      <workItem from="1533076392813" duration="90000" />
      <workItem from="1533465199569" duration="295000" />
      <workItem from="1544973155534" duration="4931000" />
      <workItem from="1545004229098" duration="268000" />
      <workItem from="1545084711013" duration="8346000" />
      <workItem from="1545094152381" duration="1702000" />
      <workItem from="1571750549086" duration="4693000" />
      <workItem from="1572429943145" duration="956000" />
      <workItem from="1573202998548" duration="152000" />
      <workItem from="1573203186791" duration="394000" />
      <workItem from="1573203602962" duration="176000" />
      <workItem from="1573203885702" duration="236000" />
      <workItem from="1573204157564" duration="169000" />
      <workItem from="1573297543256" duration="90000" />
      <workItem from="1573297654615" duration="129000" />
      <workItem from="1574256841802" duration="79000" />
      <workItem from="1575111983634" duration="5356000" />
      <workItem from="1575205780543" duration="3509000" />
      <workItem from="1576052413338" duration="296000" />
      <workItem from="1576301487281" duration="31000" />
      <workItem from="1576301550349" duration="1535000" />
      <workItem from="1576361306123" duration="3681000" />
      <workItem from="1576397284625" duration="4813000" />
      <workItem from="1576405474619" duration="1592000" />
      <workItem from="1577190069832" duration="2181000" />
      <workItem from="1577250777771" duration="18395000" />
      <workItem from="1577343685679" duration="2062000" />
      <workItem from="1577347620444" duration="10000" />
      <workItem from="1577348502533" duration="63000" />
      <workItem from="1577348580676" duration="41000" />
      <workItem from="1577348633640" duration="14000" />
      <workItem from="1577428706252" duration="193000" />
      <workItem from="1577429683391" duration="20000" />
      <workItem from="1579356903319" duration="28000" />
      <workItem from="1579356939915" duration="2358000" />
      <workItem from="1579512124041" duration="19000" />
      <workItem from="1579512151664" duration="6729000" />
      <workItem from="1579523168128" duration="8798000" />
      <workItem from="1579595959016" duration="7479000" />
      <workItem from="1579855682765" duration="1150000" />
      <workItem from="1582220064233" duration="216000" />
      <workItem from="1582220310619" duration="2076000" />
      <workItem from="1582223398945" duration="5029000" />
      <workItem from="1582453865205" duration="689000" />
      <workItem from="1582454602230" duration="209000" />
      <workItem from="1582454875184" duration="60000" />
      <workItem from="1583098500943" duration="2811000" />
      <workItem from="1583125438389" duration="979000" />
      <workItem from="1583177185033" duration="3526000" />
      <workItem from="1583267085739" duration="3727000" />
      <workItem from="1583445509740" duration="379000" />
      <workItem from="1583489641753" duration="1401000" />
      <workItem from="1583518412998" duration="1685000" />
      <workItem from="1583526889477" duration="14000" />
      <workItem from="1583527015207" duration="59000" />
      <workItem from="1583527111578" duration="82000" />
      <workItem from="1583554634686" duration="5295000" />
      <workItem from="1583561617468" duration="5701000" />
      <workItem from="1583567563787" duration="1938000" />
      <workItem from="1583577790320" duration="14000" />
      <workItem from="1583578402068" duration="401000" />
      <workItem from="1583579272105" duration="218000" />
      <workItem from="1583579499021" duration="4423000" />
      <workItem from="1583591107447" duration="9559000" />
      <workItem from="1583601683368" duration="1734000" />
      <workItem from="1583608217376" duration="2966000" />
      <workItem from="1583643293725" duration="1193000" />
      <workItem from="1583662542499" duration="117000" />
      <workItem from="1583697051647" duration="2734000" />
      <workItem from="1583734627578" duration="31000" />
      <workItem from="1583817142910" duration="2429000" />
      <workItem from="1583861770634" duration="8021000" />
      <workItem from="1583905760514" duration="606000" />
      <workItem from="1583980830605" duration="2051000" />
      <workItem from="1585303364933" duration="490000" />
      <workItem from="1585311435021" duration="1239000" />
      <workItem from="1585382964928" duration="634000" />
      <workItem from="1585448650911" duration="3448000" />
      <workItem from="1585496289168" duration="781000" />
      <workItem from="1585502760258" duration="278000" />
      <workItem from="1585744068824" duration="8000" />
      <workItem from="1585744090524" duration="1225000" />
      <workItem from="1586068805783" duration="630000" />
      <workItem from="1586104712722" duration="332000" />
      <workItem from="1586173278369" duration="459000" />
      <workItem from="1586405973508" duration="2392000" />
      <workItem from="1586505505655" duration="206000" />
      <workItem from="1586508909059" duration="869000" />
      <workItem from="1586576475885" duration="2260000" />
      <workItem from="1586636402202" duration="1124000" />
      <workItem from="1586959873465" duration="485000" />
      <workItem from="1586968400177" duration="1137000" />
      <workItem from="1587239511321" duration="57000" />
      <workItem from="1587276682557" duration="1471000" />
      <workItem from="1587636558620" duration="1925000" />
      <workItem from="1587712317516" duration="206000" />
      <workItem from="1587817465433" duration="6000" />
      <workItem from="1588017324713" duration="1342000" />
      <workItem from="1588160279775" duration="824000" />
      <workItem from="1588333544318" duration="420000" />
      <workItem from="1588402748436" duration="84000" />
      <workItem from="1588485615393" duration="544000" />
      <workItem from="1588486824838" duration="598000" />
      <workItem from="1588839023102" duration="681000" />
      <workItem from="1588929687597" duration="1088000" />
      <workItem from="1589032970309" duration="598000" />
      <workItem from="1589036715850" duration="2459000" />
      <workItem from="1589299927930" duration="489000" />
      <workItem from="1589300650481" duration="505000" />
      <workItem from="1589451879486" duration="575000" />
      <workItem from="1589488606194" duration="3926000" />
      <workItem from="1589539132943" duration="15886000" />
      <workItem from="1590290900671" duration="928000" />
      <workItem from="1590346906372" duration="1554000" />
      <workItem from="1590353413835" duration="8090000" />
      <workItem from="1595576032379" duration="243000" />
      <workItem from="1595576294170" duration="2649000" />
      <workItem from="1595623304688" duration="1000" />
      <workItem from="1595624828632" duration="632000" />
      <workItem from="1595658001015" duration="394000" />
      <workItem from="1595658594334" duration="174000" />
      <workItem from="1595940457338" duration="1001000" />
      <workItem from="1596081343712" duration="56000" />
      <workItem from="1596081429209" duration="1480000" />
      <workItem from="1596480880340" duration="541000" />
      <workItem from="1596820777135" duration="428000" />
      <workItem from="1596959330505" duration="576000" />
      <workItem from="1597297237365" duration="834000" />
      <workItem from="1597322222709" duration="542000" />
      <workItem from="1597324049639" duration="132000" />
      <workItem from="1597410155614" duration="494000" />
      <workItem from="1597510013295" duration="2066000" />
      <workItem from="1597917667416" duration="1031000" />
      <workItem from="1598186645606" duration="866000" />
      <workItem from="1599901937262" duration="55000" />
      <workItem from="1599902013028" duration="371000" />
      <workItem from="1599906558237" duration="214000" />
      <workItem from="1599906798629" duration="585000" />
      <workItem from="1599914288969" duration="1334000" />
      <workItem from="1600063350911" duration="2856000" />
      <workItem from="1600158375348" duration="897000" />
      <workItem from="1600165616006" duration="488000" />
      <workItem from="1600169263386" duration="605000" />
      <workItem from="1600170001288" duration="623000" />
      <workItem from="1600244108954" duration="3633000" />
      <workItem from="1600330536505" duration="398000" />
      <workItem from="1600333548532" duration="903000" />
      <workItem from="1600337216103" duration="948000" />
      <workItem from="1600458788161" duration="509000" />
      <workItem from="1600502512096" duration="321000" />
      <workItem from="1600934828712" duration="10109000" />
      <workItem from="1600953821685" duration="31102000" />
      <workItem from="1601037090777" duration="2005000" />
      <workItem from="1601039802269" duration="3743000" />
      <workItem from="1601045890056" duration="3627000" />
      <workItem from="1601131899408" duration="14000" />
      <workItem from="1601137361648" duration="18688000" />
      <workItem from="1601156140765" duration="35000" />
      <workItem from="1601156349083" duration="31000" />
      <workItem from="1601157023911" duration="55000" />
      <workItem from="1601157799804" duration="456000" />
      <workItem from="1601185989896" duration="2775000" />
      <workItem from="1601189629856" duration="2651000" />
      <workItem from="1601192399691" duration="1450000" />
      <workItem from="1601194632190" duration="509000" />
      <workItem from="1601195300583" duration="10273000" />
      <workItem from="1601205907849" duration="47000" />
      <workItem from="1601206064940" duration="9336000" />
      <workItem from="1601216213011" duration="954000" />
      <workItem from="1601217619593" duration="14236000" />
      <workItem from="1601233024368" duration="6012000" />
      <workItem from="1601239503032" duration="420000" />
      <workItem from="1601241853703" duration="102000" />
      <workItem from="1601247927598" duration="19000" />
      <workItem from="1601264573262" duration="1153000" />
      <workItem from="1601266313980" duration="1398000" />
      <workItem from="1601267740326" duration="1593000" />
      <workItem from="1601269864684" duration="2507000" />
      <workItem from="1601272640931" duration="1017000" />
      <workItem from="1601275607580" duration="2161000" />
      <workItem from="1601277801906" duration="33000" />
      <workItem from="1601277843074" duration="8000" />
      <workItem from="1601277874567" duration="36000" />
      <workItem from="1601296680681" duration="486000" />
      <workItem from="1601297877927" duration="339000" />
      <workItem from="1601298878323" duration="6232000" />
      <workItem from="1601313911859" duration="1107000" />
      <workItem from="1601322308463" duration="2450000" />
      <workItem from="1601325106065" duration="8000" />
      <workItem from="1601325122127" duration="4000" />
      <workItem from="1601325189292" duration="2688000" />
      <workItem from="1601328863379" duration="353000" />
      <workItem from="1601330457963" duration="332000" />
      <workItem from="1601331654408" duration="234000" />
      <workItem from="1601332105051" duration="214000" />
      <workItem from="1601332851417" duration="74000" />
      <workItem from="1601348758738" duration="9412000" />
      <workItem from="1601361278349" duration="1198000" />
      <workItem from="1601363221897" duration="1805000" />
      <workItem from="1601370157124" duration="1441000" />
      <workItem from="1601385895470" duration="344000" />
      <workItem from="1601386344519" duration="65000" />
      <workItem from="1601387331002" duration="238000" />
      <workItem from="1601390532451" duration="11724000" />
      <workItem from="1601411929316" duration="371000" />
      <workItem from="1601415242381" duration="14168000" />
      <workItem from="1601464297461" duration="16636000" />
      <workItem from="1601546608001" duration="5885000" />
      <workItem from="1601567140311" duration="790000" />
      <workItem from="1601582010217" duration="3660000" />
      <workItem from="1601585685479" duration="14000" />
      <workItem from="1601585907317" duration="377000" />
      <workItem from="1601614522653" duration="5273000" />
      <workItem from="1601622116209" duration="875000" />
      <workItem from="1601625514459" duration="1032000" />
      <workItem from="1601626606727" duration="139000" />
      <workItem from="1601629519122" duration="1617000" />
      <workItem from="1601632205951" duration="2951000" />
      <workItem from="1602063456395" duration="175000" />
      <workItem from="1602063921470" duration="694000" />
      <workItem from="1602064686478" duration="470000" />
      <workItem from="1602129189397" duration="1878000" />
      <workItem from="1602244780641" duration="411000" />
      <workItem from="1602245211700" duration="2214000" />
      <workItem from="1602258175638" duration="9231000" />
      <workItem from="1602289886747" duration="4322000" />
      <workItem from="1602294364877" duration="108000" />
      <workItem from="1602294574503" duration="6525000" />
      <workItem from="1602305339804" duration="3085000" />
      <workItem from="1602320612600" duration="148000" />
      <workItem from="1602320768144" duration="3931000" />
      <workItem from="1602324790095" duration="18000" />
      <workItem from="1602324877611" duration="3772000" />
      <workItem from="1602328789881" duration="18282000" />
      <workItem from="1602347547025" duration="3130000" />
      <workItem from="1602350796610" duration="11150000" />
      <workItem from="1602372337018" duration="16527000" />
      <workItem from="1602415040019" duration="25456000" />
      <workItem from="1602489490427" duration="720000" />
      <workItem from="1602517583599" duration="9261000" />
      <workItem from="1602654730256" duration="658000" />
      <workItem from="1602655698795" duration="3222000" />
      <workItem from="1602778937517" duration="6116000" />
      <workItem from="1602830594150" duration="1080000" />
      <workItem from="1602831851620" duration="398000" />
      <workItem from="1602834060639" duration="907000" />
      <workItem from="1602865280099" duration="1709000" />
      <workItem from="1602868806039" duration="568000" />
      <workItem from="1602931841993" duration="1156000" />
      <workItem from="1602942492101" duration="4152000" />
      <workItem from="1602946661381" duration="221000" />
      <workItem from="1602947112289" duration="1615000" />
      <workItem from="1602950221449" duration="183000" />
      <workItem from="1602950570519" duration="683000" />
      <workItem from="1602991327262" duration="711000" />
      <workItem from="1602992407361" duration="811000" />
      <workItem from="1602993851245" duration="9034000" />
      <workItem from="1603038361346" duration="10234000" />
      <workItem from="1603119544273" duration="275000" />
      <workItem from="1603127335358" duration="1218000" />
      <workItem from="1603207204770" duration="391000" />
      <workItem from="1603383530906" duration="7894000" />
      <workItem from="1603533244448" duration="1118000" />
      <workItem from="1603690100653" duration="2150000" />
      <workItem from="1603693343119" duration="33000" />
      <workItem from="1603693630122" duration="989000" />
      <workItem from="1603858774794" duration="1750000" />
      <workItem from="1603861421004" duration="322000" />
      <workItem from="1603862164340" duration="6765000" />
      <workItem from="1603909700783" duration="1189000" />
      <workItem from="1603911426528" duration="717000" />
      <workItem from="1603912826411" duration="12383000" />
      <workItem from="1603965080437" duration="3169000" />
      <workItem from="1603977016095" duration="796000" />
      <workItem from="1603978062347" duration="9045000" />
      <workItem from="1604148682892" duration="244000" />
      <workItem from="1604149494007" duration="479000" />
      <workItem from="1604149990289" duration="109000" />
      <workItem from="1604150108822" duration="1274000" />
      <workItem from="1604151786309" duration="125000" />
      <workItem from="1604151920726" duration="1246000" />
      <workItem from="1604160265308" duration="43000" />
      <workItem from="1604160444169" duration="139000" />
      <workItem from="1604160592662" duration="268000" />
      <workItem from="1604161434463" duration="86000" />
      <workItem from="1604161754128" duration="59000" />
      <workItem from="1604161825173" duration="31000" />
      <workItem from="1604161868988" duration="24000" />
      <workItem from="1604161905498" duration="58000" />
      <workItem from="1604233778733" duration="87000" />
      <workItem from="1604234439825" duration="66000" />
      <workItem from="1604235661862" duration="53000" />
      <workItem from="1604236057039" duration="1518000" />
      <workItem from="1604237588806" duration="13716000" />
      <workItem from="1604263133329" duration="82000" />
      <workItem from="1604263305908" duration="880000" />
      <workItem from="1604264348791" duration="30934000" />
      <workItem from="1604302602890" duration="345000" />
      <workItem from="1604302962778" duration="69000" />
      <workItem from="1604303043836" duration="5194000" />
      <workItem from="1604290259545" duration="15961000" />
      <workItem from="1604328553910" duration="97000" />
      <workItem from="1604329053050" duration="85000" />
      <workItem from="1604329231519" duration="49000" />
      <workItem from="1604338073917" duration="333000" />
      <workItem from="1604338660721" duration="276000" />
      <workItem from="1604338945288" duration="125000" />
      <workItem from="1604339197891" duration="16391000" />
      <workItem from="1604384412465" duration="4429000" />
      <workItem from="1604741342347" duration="544000" />
      <workItem from="1604741999973" duration="1213000" />
      <workItem from="1604820379878" duration="910000" />
      <workItem from="1605310901612" duration="291000" />
      <workItem from="1605314029940" duration="929000" />
      <workItem from="1605316535884" duration="715000" />
      <workItem from="1605318663922" duration="6000" />
      <workItem from="1605323177318" duration="687000" />
      <workItem from="1605373573877" duration="472000" />
      <workItem from="1605380356742" duration="356000" />
      <workItem from="1605401351101" duration="767000" />
      <workItem from="1605501169644" duration="605000" />
      <workItem from="1605508273092" duration="627000" />
      <workItem from="1605510036131" duration="105000" />
      <workItem from="1605510241586" duration="180000" />
      <workItem from="1605510850187" duration="878000" />
      <workItem from="1605627380604" duration="404000" />
      <workItem from="1605697277006" duration="1039000" />
      <workItem from="1605716961470" duration="624000" />
      <workItem from="1605719150477" duration="3090000" />
      <workItem from="1605731164963" duration="1064000" />
      <workItem from="1605828760484" duration="249000" />
      <workItem from="1605942938186" duration="2581000" />
      <workItem from="1605955044870" duration="766000" />
      <workItem from="1605957167754" duration="106000" />
      <workItem from="1605957365142" duration="438000" />
      <workItem from="1606283488896" duration="1073000" />
      <workItem from="1606539192576" duration="18000" />
      <workItem from="1606539234066" duration="44001000" />
      <workItem from="1607013458460" duration="6000" />
      <workItem from="1607014482547" duration="3030000" />
      <workItem from="1607078232582" duration="297000" />
      <workItem from="1607078858509" duration="1771000" />
      <workItem from="1607347344572" duration="165000" />
      <workItem from="1607669949401" duration="1747000" />
      <workItem from="1607827275543" duration="23990000" />
      <workItem from="1608096003701" duration="358000" />
      <workItem from="1608191176216" duration="839000" />
      <workItem from="1608365506438" duration="849000" />
      <workItem from="1608480084162" duration="11356000" />
      <workItem from="1609084947878" duration="236000" />
      <workItem from="1609085196441" duration="2296000" />
      <workItem from="1609905347574" duration="148000" />
      <workItem from="1609905531638" duration="600000" />
      <workItem from="1611411949252" duration="374000" />
      <workItem from="1611632483593" duration="342000" />
      <workItem from="1612183556690" duration="19000" />
      <workItem from="1612183594048" duration="1298000" />
      <workItem from="1615057973486" duration="1729000" />
      <workItem from="1615125671022" duration="396000" />
      <workItem from="1615190870534" duration="10572000" />
      <workItem from="1615232193530" duration="350000" />
      <workItem from="1615242485562" duration="1152000" />
      <workItem from="1615248161616" duration="475000" />
      <workItem from="1615283555250" duration="2914000" />
      <workItem from="1615346757208" duration="86000" />
      <workItem from="1615458930372" duration="1380000" />
      <workItem from="1615471750491" duration="2017000" />
      <workItem from="1615482870301" duration="4911000" />
      <workItem from="1615708820582" duration="169000" />
      <workItem from="1616980544645" duration="1267000" />
      <workItem from="1617051050620" duration="48000" />
      <workItem from="1617051219001" duration="61000" />
      <workItem from="1617083222459" duration="408000" />
      <workItem from="1617088214024" duration="37000" />
      <workItem from="1617088477260" duration="58000" />
      <workItem from="1622292785127" duration="11957000" />
      <workItem from="1622307423735" duration="4552000" />
      <workItem from="1622314590566" duration="198000" />
      <workItem from="1622365657821" duration="835000" />
      <workItem from="1622373351685" duration="3126000" />
      <workItem from="1622376581368" duration="138000" />
      <workItem from="1625048396371" duration="13585000" />
      <workItem from="1625139913410" duration="992000" />
      <workItem from="1625140981563" duration="24875000" />
      <workItem from="1625201190107" duration="465000" />
      <workItem from="1625207858726" duration="3254000" />
      <workItem from="1627325637778" duration="78000" />
      <workItem from="1627326692325" duration="152000" />
      <workItem from="1627327714040" duration="1842000" />
      <workItem from="1627329655494" duration="525000" />
      <workItem from="1627330264848" duration="642000" />
      <workItem from="1627331086059" duration="430000" />
      <workItem from="1627660623565" duration="8453000" />
      <workItem from="1627669318068" duration="2510000" />
      <workItem from="1628357977570" duration="366000" />
      <workItem from="1628358424983" duration="255000" />
      <workItem from="1628358843275" duration="1705000" />
      <workItem from="1628360658273" duration="2733000" />
      <workItem from="1628363593112" duration="85000" />
      <workItem from="1628364487723" duration="176000" />
      <workItem from="1628365623118" duration="1204000" />
      <workItem from="1628418326546" duration="1964000" />
      <workItem from="1628424768891" duration="347000" />
      <workItem from="1628425849117" duration="96000" />
      <workItem from="1628646902309" duration="96000" />
      <workItem from="1628680532729" duration="172000" />
      <workItem from="1628681010792" duration="2532000" />
      <workItem from="1628683672130" duration="1000" />
      <workItem from="1628683748095" duration="1324000" />
      <workItem from="1628685169349" duration="954000" />
      <workItem from="1628686338524" duration="5839000" />
      <workItem from="1628692476743" duration="219000" />
      <workItem from="1628695288544" duration="531000" />
      <workItem from="1628696056786" duration="506000" />
      <workItem from="1628699897141" duration="150000" />
      <workItem from="1628700593806" duration="595000" />
      <workItem from="1628701512215" duration="103000" />
      <workItem from="1628709861939" duration="245000" />
      <workItem from="1628710909138" duration="120000" />
      <workItem from="1628714450994" duration="365000" />
      <workItem from="1628715167864" duration="707000" />
      <workItem from="1628716268187" duration="1299000" />
      <workItem from="1628717736490" duration="1083000" />
      <workItem from="1628719273545" duration="324000" />
      <workItem from="1628720296939" duration="1803000" />
      <workItem from="1628740659303" duration="738000" />
      <workItem from="1628741893862" duration="625000" />
      <workItem from="1628743159737" duration="9000" />
      <workItem from="1628743618163" duration="162000" />
      <workItem from="1628744387758" duration="519000" />
      <workItem from="1628745649042" duration="920000" />
      <workItem from="1628755578325" duration="2141000" />
      <workItem from="1628759057663" duration="1811000" />
      <workItem from="1628761758275" duration="1475000" />
      <workItem from="1630725477886" duration="5915000" />
      <workItem from="1630768042345" duration="311000" />
      <workItem from="1630768444012" duration="6891000" />
      <workItem from="1631398978471" duration="8598000" />
      <workItem from="1631412386248" duration="1838000" />
      <workItem from="1631414246956" duration="1235000" />
      <workItem from="1631415780727" duration="509000" />
      <workItem from="1631409772642" duration="339000" />
      <workItem from="1631410452649" duration="677000" />
      <workItem from="1631418709762" duration="3339000" />
      <workItem from="1631422879423" duration="1199000" />
      <workItem from="1631427169817" duration="343000" />
      <workItem from="1631427984814" duration="1457000" />
      <workItem from="1631430281682" duration="893000" />
      <workItem from="1631431212843" duration="13000" />
      <workItem from="1631431305081" duration="46000" />
      <workItem from="1631431431012" duration="4919000" />
      <workItem from="1631444010842" duration="1575000" />
      <workItem from="1631446448409" duration="387000" />
      <workItem from="1631439920843" duration="549000" />
      <workItem from="1631448016560" duration="6438000" />
      <workItem from="1640526352917" duration="1383000" />
      <workItem from="1641661416654" duration="169000" />
      <workItem from="1641661608919" duration="25000" />
      <workItem from="1642195378777" duration="839000" />
      <workItem from="1642230096511" duration="2435000" />
      <workItem from="1642709912456" duration="1991000" />
      <workItem from="1644149518726" duration="2719000" />
      <workItem from="1644572812830" duration="1122000" />
      <workItem from="1644861847079" duration="4923000" />
      <workItem from="1645272099026" duration="186000" />
      <workItem from="1646398584766" duration="5481000" />
      <workItem from="1646908891362" duration="2702000" />
      <workItem from="1647107714991" duration="606000" />
      <workItem from="1647344005567" duration="112000" />
      <workItem from="1647406318373" duration="37000" />
      <workItem from="1647406452535" duration="1520000" />
      <workItem from="1647410628708" duration="108000" />
      <workItem from="1647412945179" duration="4807000" />
      <workItem from="1648118358534" duration="9002000" />
      <workItem from="1648469054775" duration="4409000" />
      <workItem from="1648806022413" duration="799000" />
      <workItem from="1648889172047" duration="1928000" />
      <workItem from="1649174455707" duration="11223000" />
      <workItem from="1649658818252" duration="1729000" />
      <workItem from="1650315828158" duration="388000" />
      <workItem from="1650366609034" duration="4241000" />
      <workItem from="1650488737776" duration="2962000" />
      <workItem from="1650996132668" duration="619000" />
      <workItem from="1651854452130" duration="2168000" />
      <workItem from="1651990861250" duration="1302000" />
      <workItem from="1656239743027" duration="2812000" />
      <workItem from="1656442679675" duration="684000" />
      <workItem from="1656446826591" duration="5307000" />
      <workItem from="1656777560697" duration="3635000" />
      <workItem from="1656797821328" duration="12963000" />
      <workItem from="1656893636770" duration="14178000" />
      <workItem from="1656936793721" duration="354000" />
      <workItem from="1656938886800" duration="1589000" />
      <workItem from="1656945354173" duration="820000" />
      <workItem from="1656946511359" duration="565000" />
      <workItem from="1656948646315" duration="51000" />
      <workItem from="1656948707017" duration="6676000" />
      <workItem from="1656955553348" duration="1000" />
      <workItem from="1656956502859" duration="3770000" />
      <workItem from="1656967040258" duration="2802000" />
      <workItem from="1656969928756" duration="899000" />
    </task>
    <servers />
  </component>
  <component name="TypeScriptGeneratedFilesManager">
    <option name="version" value="3" />
  </component>
  <component name="UnknownFeatures">
    <option featureType="com.intellij.fileTypeFactory" implementationName="*.cfg" />
  </component>
  <component name="Vcs.Log.Tabs.Properties">
    <option name="TAB_STATES">
      <map>
        <entry key="MAIN">
          <value>
            <State />
          </value>
        </entry>
      </map>
    </option>
  </component>
  <component name="XDebuggerManager">
    <breakpoint-manager>
      <breakpoints>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/image.c</url>
          <line>1780</line>
          <option name="timeStamp" value="1" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/opencl.c</url>
          <line>1080</line>
          <option name="timeStamp" value="3" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/opencl.c</url>
          <line>1152</line>
          <option name="timeStamp" value="7" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/opencl.c</url>
          <line>1144</line>
          <option name="timeStamp" value="8" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/opencl.c</url>
          <line>1170</line>
          <option name="timeStamp" value="9" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/opencl.c</url>
          <line>1178</line>
          <option name="timeStamp" value="10" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/opencl.c</url>
          <line>1196</line>
          <option name="timeStamp" value="11" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/opencl.c</url>
          <line>1204</line>
          <option name="timeStamp" value="12" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/convolutional_layer.c</url>
          <line>190</line>
          <option name="timeStamp" value="15" />
        </line-breakpoint>
        <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
          <url>file://$PROJECT_DIR$/src/opencl.c</url>
          <line>376</line>
          <option name="timeStamp" value="16" />
        </line-breakpoint>
      </breakpoints>
      <default-breakpoints>
        <breakpoint type="python-exception">
          <properties notifyOnTerminate="true" exception="BaseException">
            <option name="notifyOnTerminate" value="true" />
          </properties>
        </breakpoint>
        <breakpoint enabled="true" type="CidrExceptionBreakpoint" />
      </default-breakpoints>
    </breakpoint-manager>
  </component>
  <component name="XSLT-Support.FileAssociations.UIState">
    <expand />
    <select />
  </component>
</project>

Entering: $ grep "bindarknet" .idea/workspace.xml

Shows this:

  <component name="RunManager" selected="CMake Application.bindarknet (tcifar)">
    <configuration name="bindarknet (Yv1Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo demo cfg/yolov1.cfg ../../../weights/yolov1.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo test cfg/yolov1.cfg ../../../weights/yolov1.weights data/dog.jpg -thresh 0.15 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv2Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights ../../../car_vlog.mp4 -thresh .35 -i 1" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv2Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3-sppDemo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3-spp.cfg ../../../weights/yolov3-spp.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3-spp)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov3-spp.cfg ../../../weights/yolov3-spp.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights ../../../car_vlog.mp4 -thresh .35 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4CX)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-csp-x-swish.cfg ../../../weights/yolov4-csp-x-swish.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4C)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-csp.cfg ../../../weights/yolov4-csp.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights ../../../car_vlog.mp4 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4Demo) (odir)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="ddetect cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights $USER_HOME$/yolo4In -out $USER_HOME$/yolo4Out -i 0 -thresh .25 -margin 2" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4Demo) " type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4P5)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-p5.cfg ../../../weights/yolov4-p5.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4P6)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-p6.cfg ../../../weights/yolov4-p6.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4TDemo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights ../../../car_vlog.mp4 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4TDemo)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4XM)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4x-mish.cfg ../../../weights/yolov4x-mish.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv5L)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov5l_v4.cfg ../../../weights/yolov5l_v4.weights data/dog.jpg -thresh .35 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/6298_cat.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/4882_frog.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/2568_truck.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try4)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/5238_bird.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try5)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/train/35728_automobile.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv1) (cnt.)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="yolo train yolov1.cfg voc.data backup1/yolov1.backup -gpus 0,1,2,3" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo train yolov1.cfg voc.data darknet.conv.weights -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv2) (cnt.)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train voc.data yolov2-voc.cfg backup/yolov2-voc.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector train coco.data yolov2-voc.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv3) (cnt)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train voc.data yolov3-voc.cfg backup/yolov3-voc.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector train voc.data yolov3-voc.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv4) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4-tiny.cfg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv4) (cnt) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4-tiny.cfg backup/yolov4-tiny.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv4) (cnt)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4.cfg backup/yolov4.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv4)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv5l) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov5l_v4.cfg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tcifar) (d19)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="classifier train cfg/cifar.data cfg/darknet19.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tcifar) (valid)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier valid cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights -i 1" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tcifar)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier train cfg/cifar.data cfg/cifar_small.cfg -gpus 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
      <item itemvalue="CMake Application.bindarknet (Yv1Demo)" />
      <item itemvalue="CMake Application.bindarknet (Yv1)" />
      <item itemvalue="CMake Application.bindarknet (Yv2Demo) (car)" />
      <item itemvalue="CMake Application.bindarknet (Yv2Demo)" />
      <item itemvalue="CMake Application.bindarknet (Yv2)" />
      <item itemvalue="CMake Application.bindarknet (Yv3-sppDemo)" />
      <item itemvalue="CMake Application.bindarknet (Yv3-spp)" />
      <item itemvalue="CMake Application.bindarknet (Yv3Demo) (car)" />
      <item itemvalue="CMake Application.bindarknet (Yv3)" />
      <item itemvalue="CMake Application.bindarknet (Yv3Demo)" />
      <item itemvalue="CMake Application.bindarknet (Yv4Demo) (car)" />
      <item itemvalue="CMake Application.bindarknet (Yv4TDemo) (car)" />
      <item itemvalue="CMake Application.bindarknet (Yv4Demo) " />
      <item itemvalue="CMake Application.bindarknet (Yv4TDemo)" />
      <item itemvalue="CMake Application.bindarknet (Yv4)" />
      <item itemvalue="CMake Application.bindarknet (Yv4T)" />
      <item itemvalue="CMake Application.bindarknet (Yv4C)" />
      <item itemvalue="CMake Application.bindarknet (Yv4CX)" />
      <item itemvalue="CMake Application.bindarknet (Yv4XM)" />
      <item itemvalue="CMake Application.bindarknet (Yv4P5)" />
      <item itemvalue="CMake Application.bindarknet (Yv4P6)" />
      <item itemvalue="CMake Application.bindarknet (Yv5L)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try1)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try2)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try3)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try4)" />
      <item itemvalue="CMake Application.bindarknet (cifar) (try5)" />
      <item itemvalue="CMake Application.bindarknet (tYv1) (cnt.)" />
      <item itemvalue="CMake Application.bindarknet (tYv1)" />
      <item itemvalue="CMake Application.bindarknet (tYv2) (cnt.)" />
      <item itemvalue="CMake Application.bindarknet (tYv2)" />
      <item itemvalue="CMake Application.bindarknet (tYv3)" />
      <item itemvalue="CMake Application.bindarknet (tYv3) (cnt)" />
      <item itemvalue="CMake Application.bindarknet (tYv4) (cnt)" />
      <item itemvalue="CMake Application.bindarknet (tYv4)" />
      <item itemvalue="CMake Application.bindarknet (tYv4) (cnt) (T)" />
      <item itemvalue="CMake Application.bindarknet (tYv4) (T)" />
      <item itemvalue="CMake Application.bindarknet (tYv5l) (T)" />
      <item itemvalue="CMake Application.bindarknet (Yv4Demo) (odir)" />
      <item itemvalue="CMake Application.bindarknet (tcifar) (d19)" />
      <item itemvalue="CMake Application.bindarknet (tcifar) (valid)" />
      <item itemvalue="CMake Application.bindarknet (tcifar)" />

Entering: $ grep "configuration" .idea/workspace.xml

Shows this:

  <component name="RunManager" selected="CMake Application.bindarknet (tcifar)">
    <configuration name="bindarknet (Yv1Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo demo cfg/yolov1.cfg ../../../weights/yolov1.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo test cfg/yolov1.cfg ../../../weights/yolov1.weights data/dog.jpg -thresh 0.15 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv2Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights ../../../car_vlog.mp4 -thresh .35 -i 1" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv2Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3-sppDemo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3-spp.cfg ../../../weights/yolov3-spp.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3-spp)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov3-spp.cfg ../../../weights/yolov3-spp.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights ../../../car_vlog.mp4 -thresh .35 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4CX)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-csp-x-swish.cfg ../../../weights/yolov4-csp-x-swish.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4C)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-csp.cfg ../../../weights/yolov4-csp.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights ../../../car_vlog.mp4 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4Demo) (odir)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="ddetect cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights $USER_HOME$/yolo4In -out $USER_HOME$/yolo4Out -i 0 -thresh .25 -margin 2" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4Demo) " type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4P5)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-p5.cfg ../../../weights/yolov4-p5.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4P6)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-p6.cfg ../../../weights/yolov4-p6.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4TDemo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights ../../../car_vlog.mp4 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4TDemo)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4XM)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4x-mish.cfg ../../../weights/yolov4x-mish.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv4)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (Yv5L)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov5l_v4.cfg ../../../weights/yolov5l_v4.weights data/dog.jpg -thresh .35 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/6298_cat.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/4882_frog.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/2568_truck.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try4)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/5238_bird.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (cifar) (try5)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/train/35728_automobile.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv1) (cnt.)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="yolo train yolov1.cfg voc.data backup1/yolov1.backup -gpus 0,1,2,3" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo train yolov1.cfg voc.data darknet.conv.weights -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv2) (cnt.)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train voc.data yolov2-voc.cfg backup/yolov2-voc.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector train coco.data yolov2-voc.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv3) (cnt)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train voc.data yolov3-voc.cfg backup/yolov3-voc.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector train voc.data yolov3-voc.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv4) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4-tiny.cfg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv4) (cnt) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4-tiny.cfg backup/yolov4-tiny.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv4) (cnt)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4.cfg backup/yolov4.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv4)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tYv5l) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov5l_v4.cfg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tcifar) (d19)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="classifier train cfg/cifar.data cfg/darknet19.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    <configuration name="bindarknet (tcifar) (valid)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier valid cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights -i 1" REDIRECT_INPUT="false" ELEVATE="false" USEuser@user:~/darknet $ grep "configuration" .idea/workspace.xml
    <configurations>
      <configuration PROFILE_NAME="RelWithDebInfo" ENABLED="true" CONFIG_NAME="RelWithDebInfo" BUILD_OPTIONS="-v" />
    </configurations>
    <configuration default="true" type="GradleAppRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true">
    </configuration>
    <configuration name="Build All" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet" EXPLICIT_BUILD_TARGET_NAME="all">
    </configuration>
    <configuration default="true" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true">
    </configuration>
    <configuration name="bindarknet (Yv1Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo demo cfg/yolov1.cfg ../../../weights/yolov1.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo test cfg/yolov1.cfg ../../../weights/yolov1.weights data/dog.jpg -thresh 0.15 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv2Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights ../../../car_vlog.mp4 -thresh .35 -i 1" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv2Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov2.cfg ../../../weights/yolov2.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv3-sppDemo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3-spp.cfg ../../../weights/yolov3-spp.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv3-spp)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov3-spp.cfg ../../../weights/yolov3-spp.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv3Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights ../../../car_vlog.mp4 -thresh .35 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv3Demo)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4CX)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-csp-x-swish.cfg ../../../weights/yolov4-csp-x-swish.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4C)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-csp.cfg ../../../weights/yolov4-csp.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4Demo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights ../../../car_vlog.mp4 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4Demo) (odir)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="ddetect cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights $USER_HOME$/yolo4In -out $USER_HOME$/yolo4Out -i 0 -thresh .25 -margin 2" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4Demo) " type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4P5)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-p5.cfg ../../../weights/yolov4-p5.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4P6)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-p6.cfg ../../../weights/yolov4-p6.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4TDemo) (car)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights ../../../car_vlog.mp4 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4TDemo)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector demo cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights -c 0 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4-tiny.cfg ../../../weights/yolov4-tiny.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4XM)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4x-mish.cfg ../../../weights/yolov4x-mish.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv4)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov4.cfg ../../../weights/yolov4.weights data/dog.jpg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (Yv5L)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detect cfg/coco.data cfg/yolov5l_v4.cfg ../../../weights/yolov5l_v4.weights data/dog.jpg -thresh .35 -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$PROJECT_DIR$" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (cifar) (try1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/6298_cat.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (cifar) (try2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/4882_frog.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (cifar) (try3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/2568_truck.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (cifar) (try4)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/test/5238_bird.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (cifar) (try5)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier predict cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights data/cifar/train/35728_automobile.png -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv1) (cnt.)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="yolo train yolov1.cfg voc.data backup1/yolov1.backup -gpus 0,1,2,3" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv1)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="yolo train yolov1.cfg voc.data darknet.conv.weights -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv2) (cnt.)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train voc.data yolov2-voc.cfg backup/yolov2-voc.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv2)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector train coco.data yolov2-voc.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv3) (cnt)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train voc.data yolov3-voc.cfg backup/yolov3-voc.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv3)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="detector train voc.data yolov3-voc.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/voc" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv4) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4-tiny.cfg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv4) (cnt) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4-tiny.cfg backup/yolov4-tiny.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv4) (cnt)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4.cfg backup/yolov4.backup -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv4)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov4.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tYv5l) (T)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="detector train coco.data yolov5l_v4.cfg -i 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/coco" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tcifar) (d19)" type="CMakeRunConfiguration" factoryName="Application" PROGRAM_PARAMS="classifier train cfg/cifar.data cfg/darknet19.cfg -gpus 1,2,3,4" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tcifar) (valid)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier valid cfg/cifar.data cfg/cifar_small_test.cfg backup/cifar_small.weights -i 1" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="bindarknet (tcifar)" type="CMakeRunConfiguration" factoryName="Application" singleton="true" PROGRAM_PARAMS="classifier train cfg/cifar.data cfg/cifar_small.cfg -gpus 0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" WORKING_DIR="file://$USER_HOME$/cifar" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="darknet" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet" CONFIG_NAME="RelWithDebInfo" RUN_TARGET_PROJECT_NAME="darknet" RUN_TARGET_NAME="darknet">
    </configuration>
    <configuration name="darknet_l" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet_l" CONFIG_NAME="RelWithDebInfo">
    </configuration>
    <configuration name="darknet_s" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="darknet" TARGET_NAME="darknet_s" CONFIG_NAME="RelWithDebInfo">
    </configuration>
    <configuration />

Thanks.

sowson commented 1 year ago

Did you: git clone repo?

https://github.com/sowson/darknet/blob/master/.idea/workspace.xml https://github.com/sowson/darknet/blob/master/.idea/workspace.xml ;-).

p

On 11 Oct 2022, at 02:16, Unixxx @.***> wrote:

Hello Sowa, Thank You for replying.

I have entered:

$ grep .idea/workspace.xml | grep bindarknet | grep configuration

to the root directory of "darknet" folder and nothing happens...

https://user-images.githubusercontent.com/61344181/194971030-d164ca86-4c9a-4549-a36b-17f015f6f8dc.jpg Thanks.

— Reply to this email directly, view it on GitHub https://github.com/sowson/darknet/issues/79#issuecomment-1273933996, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIC6NQEEQCTYW5RCQB35VYDWCSWWTANCNFSM6AAAAAAQ7IPBXA. You are receiving this because you commented.

rajhlinux commented 1 year ago

Hello Sowa, Thanks for replying.

Yes, I have git cloned the repo:

This is what I entered on home directory: git clone https://github.com/sowson/darknet.git

I think I did not provide the full path correctly before when running darknet.

I am using yolov3 and get a different error which is similar to someone else I read who reported on the issues section of this repo: https://github.com/sowson/darknet/issues/58

I enter:

$ /home/user/darknet/build/darknet detect /usr/home/user/darknet/cfg/yolov3.cfg /usr/home/user/darknet/weights/yolov3.weights /home/user/darknet/data/dog.jpg

This is the results:

Device IDs: 1
Device ID: 0
Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
Device vendor: AMD
Device opencl availability: OpenCL 1.1 Mesa 21.3.8
Device opencl used: 21.3.8
Device double precision: YES
Device max group size: 256
Device address bits: 64
names: Using default 'data/names.list'
Segmentation fault (core dumped)

Thanks

sowson commented 1 year ago

Did you changed sprintf 2nd parameter to be “%f.2” as I sent to you in patch as an example?

On 11 Oct 2022, at 04:01, Unixxx @.***> wrote:

Hello Sowa, Thanks for replying.

Yes, I have git cloned the repo:

This is what I entered on home directory: git clone https://github.com/sowson/darknet.git https://github.com/sowson/darknet.git I think I did not provide the full path correctly before when running darknet.

I am using yolov3 and get a different error which is similar to someone else I read on the issues section of this repo:

$ /home/user/darknet/build/darknet detect /usr/home/user/darknet/cfg/yolov3.cfg /usr/home/user/darknet/weights/yolov3.weights /home/user/darknet/data/dog.jpg

Device IDs: 1 Device ID: 0 Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1) Device vendor: AMD Device opencl availability: OpenCL 1.1 Mesa 21.3.8 Device opencl used: 21.3.8 Device double precision: YES Device max group size: 256 Device address bits: 64 names: Using default 'data/names.list' Segmentation fault (core dumped) Thanks

— Reply to this email directly, view it on GitHub https://github.com/sowson/darknet/issues/79#issuecomment-1273989134, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIC6NQBOYTXATBSH3QAXVF3WCTC6TANCNFSM6AAAAAAQ7IPBXA. You are receiving this because you commented.

rajhlinux commented 1 year ago

No I have not, I will do it now.

Thank you.

sowson commented 1 year ago

YOLO3 (dog.jpg example) command is:

$ darknet detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg

On 11 Oct 2022, at 04:07, Unixxx @.***> wrote:

No I have not, I will do it now.

Thank you.

— Reply to this email directly, view it on GitHub https://github.com/sowson/darknet/issues/79#issuecomment-1273992315, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIC6NQBSLDF5LQ5EOQACKXDWCTDWBANCNFSM6AAAAAAQ7IPBXA. You are receiving this because you commented.

rajhlinux commented 1 year ago

I have done the correct patch for sprintf.

Now get a different error:

$ darknet detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg

Shows:

 GPU isn't used 
 OpenCV version: 4.6.0
Couldn't open file: cfg/coco.data

Edit:

I need to place the dot slash ./ notation for running the binary: $ ./darknet detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg:

Shows:

Device IDs: 1
Device ID: 0
Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
Device vendor: AMD
Device opencl availability: OpenCL 1.1 Mesa 21.3.8
Device opencl used: 21.3.8
Device double precision: YES
Device max group size: 256
Device address bits: 64
Couldn't open file: data/coco.names

Thanks.

rajhlinux commented 1 year ago

Alrighty...

So I have done some googling, it seems like others had the same issue with original CUDA repo for darknet: https://github.com/pjreddie/darknet/issues/813

I edited the coco.data file located at: /usr/home/user/darknet/cfg/coco.data

From:

classes= 80
train  = /home/pjreddie/data/coco/trainvalno5k.txt
valid  = coco_testdev
#valid = data/coco_val_5k.list
names = data/coco.names
backup = /home/pjreddie/backup/
eval=coco

To:

classes= 80 
train = /home/pjreddie/data/coco/trainvalno5k.txt 
valid = coco_testdev 
#valid = data/coco_val_5k.list 
names = ../data/coco.names 
backup = /home/pjreddie/backup/ 
eval=coco

All that was required was to append the ../ prefix notation at the beginning for: names = data/coco.names.

I have recompiled the project, ran it again... and viola, GPU computation? :robot: :sparkler::

$ ./darknet detect /usr/home/user/darknet/cfg/coco.data /usr/home/user/darknet/cfg/yolov3.cfg /usr/home/user/darknet/weights/yolov3.weights /home/user/darknet/data/dog.jpg >> detect.txt

Device IDs: 1
Device ID: 0
Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
Device vendor: AMD
Device opencl availability: OpenCL 1.1 Mesa 21.3.8
Device opencl used: 21.3.8
Device double precision: YES
Device max group size: 256
Device address bits: 64

[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/32_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/32_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/33_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/33_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/34_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/34_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/35_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/35_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/36_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/36_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/37_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/37_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/38_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/38_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/39_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/39_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/40_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/40_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/41_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/41_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/42_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/42_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/43_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/43_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/44_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/44_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/45_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/45_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/47_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/47_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/48_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/48_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/49_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/49_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/50_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/50_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/51_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/51_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/52_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/52_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/53_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/53_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/54_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/54_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/55_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/55_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/56_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/56_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/57_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/57_0.png"
[ WARN:0@7.986] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/58_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/58_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/59_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/59_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/60_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/60_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/61_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/61_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/62_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/62_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/63_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/63_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/64_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/64_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/65_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/65_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/66_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/66_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/67_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/67_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/68_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/68_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/69_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/69_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/70_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/70_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/71_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/71_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/72_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/72_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/73_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/73_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/74_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/74_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/75_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/75_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/76_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/76_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/77_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/77_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/78_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/78_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/79_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/79_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/80_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/80_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/81_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/81_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/82_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/82_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/83_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/83_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/84_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/84_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/85_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/85_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/86_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/86_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/87_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/87_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/88_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/88_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/89_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/89_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/90_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/90_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/91_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/91_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/92_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/92_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/93_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/93_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/94_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/94_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/95_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/95_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/96_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/96_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/97_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/97_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/98_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/98_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/99_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/99_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/100_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/100_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/101_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/101_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/102_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/102_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/103_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/103_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/104_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/104_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/105_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/105_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/106_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/106_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/107_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/107_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/108_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/108_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/109_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/109_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/110_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/110_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/111_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/111_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/112_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/112_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/113_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/113_0.png"
[ WARN:0@7.987] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/114_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/114_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/115_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/115_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/116_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/116_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/117_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/117_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/118_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/118_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/119_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/119_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/120_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/120_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/121_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/121_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/122_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/122_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/123_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/123_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/124_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/124_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/125_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/125_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/126_0.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/126_0.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/32_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/32_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/33_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/33_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/34_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/34_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/35_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/35_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/36_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/36_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/37_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/37_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/38_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/38_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/39_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/39_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/40_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/40_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/41_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/41_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/42_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/42_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/43_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/43_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/44_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/44_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/45_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/45_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/47_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/47_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/48_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/48_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/49_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/49_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/50_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/50_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/51_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/51_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/52_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/52_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/53_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/53_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/54_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/54_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/55_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/55_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/56_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/56_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/57_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/57_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/58_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/58_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/59_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/59_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/60_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/60_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/61_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/61_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/62_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/62_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/63_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/63_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/64_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/64_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/65_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/65_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/66_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/66_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/67_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/67_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/68_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/68_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/69_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/69_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/70_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/70_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/71_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/71_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/72_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/72_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/73_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/73_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/74_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/74_1.png"
[ WARN:0@7.988] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/75_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/75_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/76_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/76_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/77_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/77_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/78_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/78_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/79_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/79_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/80_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/80_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/81_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/81_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/82_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/82_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/83_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/83_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/84_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/84_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/85_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/85_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/86_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/86_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/87_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/87_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/88_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/88_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/89_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/89_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/90_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/90_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/91_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/91_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/92_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/92_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/93_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/93_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/94_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/94_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/95_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/95_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/96_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/96_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/97_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/97_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/98_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/98_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/99_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/99_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/100_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/100_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/101_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/101_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/102_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/102_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/103_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/103_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/104_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/104_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/105_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/105_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/106_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/106_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/107_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/107_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/108_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/108_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/109_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/109_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/110_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/110_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/111_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/111_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/112_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/112_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/113_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/113_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/114_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/114_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/115_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/115_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/116_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/116_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/117_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/117_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/118_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/118_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/119_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/119_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/120_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/120_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/121_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/121_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/122_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/122_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/123_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/123_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/124_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/124_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/125_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/125_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/126_1.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/126_1.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/32_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/32_2.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/33_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/33_2.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/34_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/34_2.png"
[ WARN:0@7.989] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/35_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/35_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/36_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/36_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/37_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/37_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/38_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/38_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/39_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/39_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/40_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/40_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/41_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/41_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/42_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/42_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/43_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/43_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/44_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/44_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/45_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/45_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/47_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/47_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/48_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/48_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/49_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/49_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/50_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/50_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/51_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/51_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/52_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/52_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/53_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/53_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/54_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/54_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/55_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/55_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/56_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/56_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/57_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/57_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/58_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/58_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/59_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/59_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/60_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/60_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/61_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/61_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/62_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/62_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/63_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/63_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/64_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/64_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/65_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/65_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/66_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/66_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/67_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/67_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/68_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/68_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/69_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/69_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/70_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/70_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/71_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/71_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/72_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/72_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/73_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/73_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/74_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/74_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/75_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/75_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/76_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/76_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/77_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/77_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/78_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/78_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/79_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/79_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/80_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/80_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/81_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/81_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/82_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/82_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/83_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/83_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/84_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/84_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/85_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/85_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/86_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/86_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/87_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/87_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/88_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/88_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/89_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/89_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/90_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/90_2.png"
[ WARN:0@7.990] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/91_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/91_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/92_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/92_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/93_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/93_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/94_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/94_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/95_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/95_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/96_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/96_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/97_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/97_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/98_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/98_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/99_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/99_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/100_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/100_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/101_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/101_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/102_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/102_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/103_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/103_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/104_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/104_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/105_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/105_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/106_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/106_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/107_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/107_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/108_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/108_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/109_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/109_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/110_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/110_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/111_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/111_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/112_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/112_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/113_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/113_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/114_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/114_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/115_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/115_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/116_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/116_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/117_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/117_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/118_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/118_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/119_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/119_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/120_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/120_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/121_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/121_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/122_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/122_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/123_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/123_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/124_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/124_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/125_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/125_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/126_2.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/126_2.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/32_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/32_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/33_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/33_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/34_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/34_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/35_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/35_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/36_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/36_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/37_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/37_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/38_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/38_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/39_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/39_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/40_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/40_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/41_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/41_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/42_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/42_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/43_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/43_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/44_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/44_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/45_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/45_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/47_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/47_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/48_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/48_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/49_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/49_3.png"
[ WARN:0@7.991] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/50_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/50_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/51_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/51_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/52_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/52_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/53_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/53_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/54_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/54_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/55_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/55_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/56_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/56_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/57_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/57_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/58_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/58_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/59_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/59_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/60_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/60_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/61_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/61_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/62_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/62_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/63_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/63_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/64_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/64_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/65_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/65_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/66_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/66_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/67_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/67_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/68_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/68_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/69_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/69_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/70_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/70_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/71_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/71_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/72_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/72_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/73_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/73_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/74_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/74_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/75_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/75_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/76_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/76_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/77_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/77_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/78_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/78_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/79_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/79_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/80_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/80_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/81_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/81_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/82_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/82_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/83_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/83_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/84_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/84_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/85_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/85_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/86_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/86_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/87_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/87_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/88_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/88_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/89_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/89_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/90_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/90_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/91_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/91_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/92_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/92_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/93_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/93_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/94_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/94_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/95_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/95_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/96_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/96_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/97_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/97_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/98_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/98_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/99_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/99_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/100_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/100_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/101_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/101_3.png"
[ WARN:0@7.992] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/102_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/102_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/103_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/103_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/104_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/104_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/105_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/105_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/106_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/106_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/107_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/107_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/108_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/108_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/109_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/109_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/110_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/110_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/111_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/111_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/112_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/112_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/113_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/113_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/114_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/114_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/115_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/115_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/116_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/116_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/117_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/117_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/118_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/118_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/119_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/119_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/120_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/120_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/121_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/121_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/122_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/122_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/123_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/123_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/124_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/124_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/125_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/125_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/126_3.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/126_3.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/32_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/32_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/33_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/33_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/34_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/34_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/35_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/35_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/36_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/36_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/37_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/37_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/38_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/38_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/39_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/39_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/40_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/40_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/41_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/41_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/42_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/42_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/43_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/43_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/44_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/44_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/45_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/45_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/47_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/47_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/48_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/48_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/49_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/49_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/50_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/50_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/51_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/51_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/52_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/52_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/53_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/53_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/54_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/54_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/55_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/55_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/56_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/56_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/57_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/57_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/58_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/58_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/59_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/59_4.png"
[ WARN:0@7.993] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/60_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/60_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/61_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/61_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/62_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/62_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/63_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/63_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/64_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/64_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/65_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/65_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/66_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/66_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/67_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/67_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/68_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/68_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/69_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/69_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/70_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/70_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/71_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/71_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/72_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/72_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/73_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/73_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/74_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/74_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/75_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/75_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/76_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/76_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/77_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/77_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/78_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/78_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/79_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/79_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/80_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/80_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/81_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/81_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/82_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/82_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/83_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/83_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/84_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/84_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/85_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/85_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/86_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/86_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/87_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/87_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/88_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/88_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/89_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/89_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/90_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/90_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/91_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/91_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/92_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/92_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/93_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/93_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/94_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/94_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/95_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/95_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/96_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/96_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/97_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/97_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/98_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/98_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/99_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/99_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/100_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/100_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/101_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/101_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/102_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/102_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/103_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/103_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/104_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/104_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/105_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/105_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/106_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/106_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/107_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/107_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/108_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/108_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/109_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/109_4.png"
[ WARN:0@7.994] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/110_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/110_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/111_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/111_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/112_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/112_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/113_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/113_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/114_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/114_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/115_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/115_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/116_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/116_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/117_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/117_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/118_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/118_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/119_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/119_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/120_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/120_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/121_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/121_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/122_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/122_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/123_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/123_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/124_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/124_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/125_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/125_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/126_4.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/126_4.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/32_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/32_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/33_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/33_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/34_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/34_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/35_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/35_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/36_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/36_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/37_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/37_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/38_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/38_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/39_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/39_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/40_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/40_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/41_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/41_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/42_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/42_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/43_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/43_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/44_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/44_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/45_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/45_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/47_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/47_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/48_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/48_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/49_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/49_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/50_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/50_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/51_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/51_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/52_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/52_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/53_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/53_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/54_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/54_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/55_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/55_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/56_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/56_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/57_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/57_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/58_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/58_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/59_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/59_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/60_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/60_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/61_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/61_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/62_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/62_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/63_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/63_5.png"
[ WARN:0@7.995] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/64_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/64_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/65_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/65_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/66_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/66_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/67_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/67_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/68_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/68_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/69_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/69_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/70_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/70_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/71_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/71_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/72_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/72_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/73_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/73_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/74_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/74_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/75_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/75_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/76_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/76_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/77_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/77_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/78_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/78_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/79_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/79_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/80_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/80_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/81_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/81_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/82_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/82_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/83_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/83_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/84_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/84_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/85_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/85_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/86_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/86_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/87_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/87_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/88_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/88_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/89_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/89_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/90_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/90_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/91_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/91_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/92_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/92_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/93_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/93_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/94_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/94_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/95_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/95_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/96_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/96_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/97_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/97_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/98_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/98_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/99_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/99_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/100_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/100_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/101_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/101_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/102_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/102_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/103_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/103_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/104_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/104_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/105_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/105_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/106_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/106_5.png"
[ WARN:0@7.996] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/107_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/107_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/108_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/108_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/109_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/109_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/110_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/110_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/111_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/111_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/112_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/112_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/113_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/113_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/114_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/114_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/115_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/115_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/116_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/116_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/117_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/117_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/118_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/118_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/119_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/119_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/120_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/120_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/121_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/121_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/122_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/122_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/123_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/123_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/124_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/124_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/125_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/125_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/126_5.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/126_5.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/32_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/32_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/33_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/33_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/34_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/34_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/35_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/35_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/36_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/36_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/37_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/37_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/38_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/38_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/39_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/39_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/40_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/40_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/41_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/41_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/42_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/42_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/43_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/43_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/44_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/44_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/45_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/45_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/47_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/47_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/48_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/48_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/49_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/49_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/50_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/50_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/51_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/51_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/52_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/52_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/53_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/53_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/54_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/54_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/55_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/55_6.png"
[ WARN:0@7.997] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/56_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/56_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/57_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/57_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/58_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/58_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/59_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/59_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/60_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/60_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/61_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/61_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/62_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/62_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/63_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/63_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/64_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/64_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/65_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/65_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/66_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/66_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/67_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/67_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/68_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/68_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/69_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/69_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/70_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/70_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/71_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/71_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/72_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/72_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/73_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/73_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/74_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/74_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/75_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/75_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/76_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/76_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/77_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/77_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/78_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/78_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/79_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/79_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/80_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/80_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/81_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/81_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/82_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/82_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/83_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/83_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/84_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/84_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/85_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/85_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/86_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/86_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/87_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/87_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/88_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/88_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/89_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/89_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/90_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/90_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/91_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/91_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/92_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/92_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/93_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/93_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/94_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/94_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/95_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/95_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/96_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/96_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/97_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/97_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/98_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/98_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/99_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/99_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/100_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/100_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/101_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/101_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/102_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/102_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/103_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/103_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/104_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/104_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/105_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/105_6.png"
[ WARN:0@7.998] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/106_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/106_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/107_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/107_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/108_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/108_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/109_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/109_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/110_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/110_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/111_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/111_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/112_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/112_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/113_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/113_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/114_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/114_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/115_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/115_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/116_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/116_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/117_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/117_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/118_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/118_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/119_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/119_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/120_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/120_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/121_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/121_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/122_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/122_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/123_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/123_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/124_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/124_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/125_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/125_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/126_6.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/126_6.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/32_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/32_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/33_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/33_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/34_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/34_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/35_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/35_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/36_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/36_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/37_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/37_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/38_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/38_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/39_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/39_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/40_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/40_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/41_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/41_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/42_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/42_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/43_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/43_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/44_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/44_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/45_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/45_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/47_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/47_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/48_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/48_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/49_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/49_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/50_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/50_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/51_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/51_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/52_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/52_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/53_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/53_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/54_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/54_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/55_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/55_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/56_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/56_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/57_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/57_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/58_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/58_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/59_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/59_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/60_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/60_7.png"
[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/61_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/61_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/62_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/62_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/63_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/63_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/64_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/64_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/65_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/65_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/66_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/66_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/67_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/67_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/68_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/68_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/69_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/69_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/70_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/70_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/71_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/71_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/72_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/72_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/73_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/73_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/74_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/74_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/75_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/75_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/76_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/76_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/77_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/77_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/78_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/78_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/79_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/79_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/80_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/80_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/81_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/81_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/82_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/82_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/83_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/83_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/84_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/84_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/85_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/85_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/86_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/86_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/87_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/87_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/88_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/88_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/89_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/89_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/90_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/90_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/91_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/91_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/92_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/92_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/93_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/93_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/94_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/94_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/95_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/95_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/96_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/96_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/97_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/97_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/98_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/98_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/99_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/99_7.png"
[ WARN:0@8.000] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/100_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/100_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/101_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/101_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/102_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/102_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/103_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/103_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/104_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/104_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/105_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/105_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/106_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/106_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/107_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/107_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/108_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/108_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/109_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/109_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/110_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/110_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/111_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/111_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/112_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/112_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/113_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/113_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/114_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/114_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/115_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/115_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/116_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/116_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/117_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/117_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/118_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/118_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/119_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/119_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/120_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/120_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/121_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/121_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/122_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/122_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/123_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/123_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/124_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/124_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/125_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/125_7.png"
[ WARN:0@8.001] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/126_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/126_7.png"
layer     filters    size              input                output
    0 conv     32  3 x 3 / 1   608 x 608 x   3   ->   608 x 608 x  32  0.639 BFLOPs
    1 conv     64  3 x 3 / 2   608 x 608 x  32   ->   304 x 304 x  64  3.407 BFLOPs
    2 conv     32  1 x 1 / 1   304 x 304 x  64   ->   304 x 304 x  32  0.379 BFLOPs
    3 conv     64  3 x 3 / 1   304 x 304 x  32   ->   304 x 304 x  64  3.407 BFLOPs
    4 res    1                 304 x 304 x  64   ->   304 x 304 x  64
    5 conv    128  3 x 3 / 2   304 x 304 x  64   ->   152 x 152 x 128  3.407 BFLOPs
    6 conv     64  1 x 1 / 1   152 x 152 x 128   ->   152 x 152 x  64  0.379 BFLOPs
    7 conv    128  3 x 3 / 1   152 x 152 x  64   ->   152 x 152 x 128  3.407 BFLOPs
    8 res    5                 152 x 152 x 128   ->   152 x 152 x 128
    9 conv     64  1 x 1 / 1   152 x 152 x 128   ->   152 x 152 x  64  0.379 BFLOPs
   10 conv    128  3 x 3 / 1   152 x 152 x  64   ->   152 x 152 x 128  3.407 BFLOPs
   11 res    8                 152 x 152 x 128   ->   152 x 152 x 128
   12 conv    256  3 x 3 / 2   152 x 152 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   13 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   14 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   15 res   12                  76 x  76 x 256   ->    76 x  76 x 256
   16 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   17 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   18 res   15                  76 x  76 x 256   ->    76 x  76 x 256
   19 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   20 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   21 res   18                  76 x  76 x 256   ->    76 x  76 x 256
   22 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   23 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   24 res   21                  76 x  76 x 256   ->    76 x  76 x 256
   25 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   26 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   27 res   24                  76 x  76 x 256   ->    76 x  76 x 256
   28 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   29 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   30 res   27                  76 x  76 x 256   ->    76 x  76 x 256
   31 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   32 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   33 res   30                  76 x  76 x 256   ->    76 x  76 x 256
   34 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   35 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   36 res   33                  76 x  76 x 256   ->    76 x  76 x 256
   37 conv    512  3 x 3 / 2    76 x  76 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   38 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   39 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   40 res   37                  38 x  38 x 512   ->    38 x  38 x 512
   41 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   42 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   43 res   40                  38 x  38 x 512   ->    38 x  38 x 512
   44 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   45 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   46 res   43                  38 x  38 x 512   ->    38 x  38 x 512
   47 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   48 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   49 res   46                  38 x  38 x 512   ->    38 x  38 x 512
   50 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   51 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   52 res   49                  38 x  38 x 512   ->    38 x  38 x 512
   53 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   54 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   55 res   52                  38 x  38 x 512   ->    38 x  38 x 512
   56 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   57 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   58 res   55                  38 x  38 x 512   ->    38 x  38 x 512
   59 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   60 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   61 res   58                  38 x  38 x 512   ->    38 x  38 x 512
   62 conv   1024  3 x 3 / 2    38 x  38 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   63 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   64 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   65 res   62                  19 x  19 x1024   ->    19 x  19 x1024
   66 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   67 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   68 res   65                  19 x  19 x1024   ->    19 x  19 x1024
   69 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   70 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   71 res   68                  19 x  19 x1024   ->    19 x  19 x1024
   72 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   73 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   74 res   71                  19 x  19 x1024   ->    19 x  19 x1024
   75 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   76 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   77 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   78 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   79 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   80 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   81 conv    255  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 255  0.189 BFLOPs
   82 yolo
   83 route  79
                                   ->   19 x  19 x 512 
   84 conv    256  1 x 1 / 1    19 x  19 x 512   ->    19 x  19 x 256  0.095 BFLOPs
   85 upsample            2x    19 x  19 x 256   ->    38 x  38 x 256
   86 route  85 61
                               ->   38 x  38 x 768 
   87 conv    256  1 x 1 / 1    38 x  38 x 768   ->    38 x  38 x 256  0.568 BFLOPs
   88 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   89 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   90 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   91 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   92 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   93 conv    255  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 255  0.377 BFLOPs
   94 yolo
   95 route  91
                                   ->   38 x  38 x 256 
   96 conv    128  1 x 1 / 1    38 x  38 x 256   ->    38 x  38 x 128  0.095 BFLOPs
   97 upsample            2x    38 x  38 x 128   ->    76 x  76 x 128
   98 route  97 36
                               ->   76 x  76 x 384 
   99 conv    128  1 x 1 / 1    76 x  76 x 384   ->    76 x  76 x 128  0.568 BFLOPs
  100 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  101 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
  102 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  103 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
  104 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  105 conv    255  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 255  0.754 BFLOPs
  106 yolo
Loading weights from /usr/home/user/darknet/weights/yolov3.weights...done!
/home/user/darknet/data/dog.jpg: Predicted in 1.041693 seconds.

screenshot

So, it seems like the object detection is not working with the picture above shown, and some path related errors occurred during runtime:

[ WARN:0@7.999] global /usr/ports/graphics/opencv/work/opencv-4.6.0/modules/imgcodecs/src/loadsave.cpp (239) findDecoder imread_('data/labels/46_7.png'): can't open/read file: check file path/integrity
Cannot load image "data/labels/46_7.png"

Will look into this.

Thanks.

rajhlinux commented 1 year ago

Would like to point out that it seems like I would need to use full path syntaxes for CLI.

When I use the following different syntaxes below, I obtain errors:

root@user:/home/user/darknet/build # darknet detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg

Shows:

GPU isn't used 
OpenCV version: 4.6.0
Couldn't open file: cfg/coco.data

and

root@user:/home/user/darknet/build # ./darknet detect cfg/coco.data cfg/yolov3.cfg ../../../weights/yolov3.weights data/dog.jpg

Shows:

Device IDs: 1
Device ID: 0
Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
Device vendor: AMD
Device opencl availability: OpenCL 1.1 Mesa 21.3.8
Device opencl used: 21.3.8
Device double precision: YES
Device max group size: 256
Device address bits: 64
Couldn't open file: cfg/coco.data

However this syntax works, with the results provided from the previous comment post:

root@user:/home/user/darknet/build # ./darknet detect /usr/home/user/darknet/cfg/coco.data /usr/home/user/darknet/cfg/yolov3.cfg /usr/home/user/darknet/weights/yolov3.weights /home/user/darknet/data/dog.jpg

Would also like to mention that I have some issues of not being able to run darknet as non root user:

user@user:~/darknet/build $ ./darknet detect /usr/home/user/darknet/cfg/coco.data /usr/home/user/darknet/cfg/yolov3.cfg /usr/home/user/darknet/weights/yolov3.weights /home/user/darknet/data/dog.jpg

Shows:

failed to open /dev/dri/renderD128: Permission denied
failed to open /dev/dri/renderD128: Permission denied
opencl_init: Could not get device IDs.

Seems like I need to fix permissions for /dev/dri/renderD128. I have done this before using: $ chmod 777 /dev/dri/renderD128 $ chmod 777 /dev/dri/card0

But after a reboot, the changes did not take place permanently and reverts back. Will look into this and it is caused due to FreeBSD OS. But as of now, darknet is running as root user.

Thanks.

rajhlinux commented 1 year ago

So the compilation seems like it is working properly:

./darknet imtest /usr/home/user/darknet/data/dog.jpg

darknet_opencl

However, it seems like AMD RX-580 GPU is taking a nap :thinking: Maybe the simple test is not intensive for the GPU...

darknet seems like it is using about 20% of CPU resource, CPU during idle it is 13%.

Thanks.

sowson commented 1 year ago

cp darknet ../

and use it from darknet dir ;-). not from build.

thanks!

On 11 Oct 2022, at 07:14, Unixxx @.***> wrote:

So the compilation seems like it is working properly:

./darknet imtest /usr/home/user/darknet/data/dog.jpg

https://user-images.githubusercontent.com/61344181/195002257-b0597fd7-5032-418e-9cae-8e90bae7fc56.jpg However, it seems like AMD RX-580 GPU is taking a nap 🤔 Maybe the simple test is not intensive for for GPU...

Thanks.

— Reply to this email directly, view it on GitHub https://github.com/sowson/darknet/issues/79#issuecomment-1274097891, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIC6NQHZ4NLH5WJOQQTFFTTWCTZSBANCNFSM6AAAAAAQ7IPBXA. You are receiving this because you commented.

rajhlinux commented 1 year ago

Alright, will do.

Thank You.

rajhlinux commented 1 year ago

I had to change back the "coco.data" file back to original: names = data/coco.names

I then ran the darknet binary to the root of darknet folder:

user@user:~/darknet $ ./darknet detect /usr/home/user/darknet/cfg/coco.data /usr/home/user/darknet/cfg/yolov3.cfg /usr/home/user/darknet/weights/yolov3.weights /home/user/darknet/data/dog.jpg

Which shows:

Device IDs: 1
Device ID: 0
Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
Device vendor: AMD
Device opencl availability: OpenCL 1.1 Mesa 21.3.8
Device opencl used: 21.3.8
Device double precision: YES
Device max group size: 256
Device address bits: 64
layer     filters    size              input                output
    0 conv     32  3 x 3 / 1   608 x 608 x   3   ->   608 x 608 x  32  0.639 BFLOPs
    1 conv     64  3 x 3 / 2   608 x 608 x  32   ->   304 x 304 x  64  3.407 BFLOPs
    2 conv     32  1 x 1 / 1   304 x 304 x  64   ->   304 x 304 x  32  0.379 BFLOPs
    3 conv     64  3 x 3 / 1   304 x 304 x  32   ->   304 x 304 x  64  3.407 BFLOPs
    4 res    1                 304 x 304 x  64   ->   304 x 304 x  64
    5 conv    128  3 x 3 / 2   304 x 304 x  64   ->   152 x 152 x 128  3.407 BFLOPs
    6 conv     64  1 x 1 / 1   152 x 152 x 128   ->   152 x 152 x  64  0.379 BFLOPs
    7 conv    128  3 x 3 / 1   152 x 152 x  64   ->   152 x 152 x 128  3.407 BFLOPs
    8 res    5                 152 x 152 x 128   ->   152 x 152 x 128
    9 conv     64  1 x 1 / 1   152 x 152 x 128   ->   152 x 152 x  64  0.379 BFLOPs
   10 conv    128  3 x 3 / 1   152 x 152 x  64   ->   152 x 152 x 128  3.407 BFLOPs
   11 res    8                 152 x 152 x 128   ->   152 x 152 x 128
   12 conv    256  3 x 3 / 2   152 x 152 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   13 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   14 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   15 res   12                  76 x  76 x 256   ->    76 x  76 x 256
   16 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   17 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   18 res   15                  76 x  76 x 256   ->    76 x  76 x 256
   19 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   20 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   21 res   18                  76 x  76 x 256   ->    76 x  76 x 256
   22 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   23 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   24 res   21                  76 x  76 x 256   ->    76 x  76 x 256
   25 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   26 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   27 res   24                  76 x  76 x 256   ->    76 x  76 x 256
   28 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   29 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   30 res   27                  76 x  76 x 256   ->    76 x  76 x 256
   31 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   32 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   33 res   30                  76 x  76 x 256   ->    76 x  76 x 256
   34 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   35 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   36 res   33                  76 x  76 x 256   ->    76 x  76 x 256
   37 conv    512  3 x 3 / 2    76 x  76 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   38 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   39 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   40 res   37                  38 x  38 x 512   ->    38 x  38 x 512
   41 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   42 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   43 res   40                  38 x  38 x 512   ->    38 x  38 x 512
   44 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   45 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   46 res   43                  38 x  38 x 512   ->    38 x  38 x 512
   47 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   48 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   49 res   46                  38 x  38 x 512   ->    38 x  38 x 512
   50 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   51 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   52 res   49                  38 x  38 x 512   ->    38 x  38 x 512
   53 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   54 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   55 res   52                  38 x  38 x 512   ->    38 x  38 x 512
   56 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   57 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   58 res   55                  38 x  38 x 512   ->    38 x  38 x 512
   59 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   60 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   61 res   58                  38 x  38 x 512   ->    38 x  38 x 512
   62 conv   1024  3 x 3 / 2    38 x  38 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   63 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   64 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   65 res   62                  19 x  19 x1024   ->    19 x  19 x1024
   66 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   67 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   68 res   65                  19 x  19 x1024   ->    19 x  19 x1024
   69 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   70 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   71 res   68                  19 x  19 x1024   ->    19 x  19 x1024
   72 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   73 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   74 res   71                  19 x  19 x1024   ->    19 x  19 x1024
   75 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   76 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   77 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   78 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   79 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   80 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   81 conv    255  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 255  0.189 BFLOPs
   82 yolo
   83 route  79
                                           ->   19 x  19 x 512 
   84 conv    256  1 x 1 / 1    19 x  19 x 512   ->    19 x  19 x 256  0.095 BFLOPs
   85 upsample            2x    19 x  19 x 256   ->    38 x  38 x 256
   86 route  85 61
                                   ->   38 x  38 x 768 
   87 conv    256  1 x 1 / 1    38 x  38 x 768   ->    38 x  38 x 256  0.568 BFLOPs
   88 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   89 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   90 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   91 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   92 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   93 conv    255  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 255  0.377 BFLOPs
   94 yolo
   95 route  91
                                           ->   38 x  38 x 256 
   96 conv    128  1 x 1 / 1    38 x  38 x 256   ->    38 x  38 x 128  0.095 BFLOPs
   97 upsample            2x    38 x  38 x 128   ->    76 x  76 x 128
   98 route  97 36
                                   ->   76 x  76 x 384 
   99 conv    128  1 x 1 / 1    76 x  76 x 384   ->    76 x  76 x 128  0.568 BFLOPs
  100 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  101 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
  102 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  103 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
  104 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  105 conv    255  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 255  0.754 BFLOPs
  106 yolo
Loading weights from /usr/home/user/darknet/weights/yolov3.weights...done!

No errors. :blush: However, there are no detection boarders on the GUI interface and CLI does not indicate any detected objects:

darknet_opencl_2

Thanks.

rajhlinux commented 1 year ago

I turned off "Multi-GPU" and recompiled:

option(DARKNET_GPU_MULTI "Enable OpenCL multi-GPU support" OFF)

Now get an error:

user@user:~/darknet $ ./darknet detect /usr/home/user/darknet/cfg/coco.data /usr/home/user/darknet/cfg/yolov3.cfg /usr/home/user/darknet/weights/yolov3.weights /home/user/darknet/data/dog.jpg 
Device IDs: 1
Device ID: 0
Device name: AMD Radeon RX 580 Series (POLARIS10, DRM 3.35.0, 13.1-RELEASE-p1, LLVM 13.0.1)
Device vendor: AMD
Device opencl availability: OpenCL 1.1 Mesa 21.3.8
Device opencl used: 21.3.8
Device double precision: YES
Device max group size: 256
Device address bits: 64
layer     filters    size              input                output
    0 conv     32  3 x 3 / 1   608 x 608 x   3   ->   608 x 608 x  32  0.639 BFLOPs
    1 conv     64  3 x 3 / 2   608 x 608 x  32   ->   304 x 304 x  64  3.407 BFLOPs
    2 conv     32  1 x 1 / 1   304 x 304 x  64   ->   304 x 304 x  32  0.379 BFLOPs
    3 conv     64  3 x 3 / 1   304 x 304 x  32   ->   304 x 304 x  64  3.407 BFLOPs
    4 res    1                 304 x 304 x  64   ->   304 x 304 x  64
    5 conv    128  3 x 3 / 2   304 x 304 x  64   ->   152 x 152 x 128  3.407 BFLOPs
    6 conv     64  1 x 1 / 1   152 x 152 x 128   ->   152 x 152 x  64  0.379 BFLOPs
    7 conv    128  3 x 3 / 1   152 x 152 x  64   ->   152 x 152 x 128  3.407 BFLOPs
    8 res    5                 152 x 152 x 128   ->   152 x 152 x 128
    9 conv     64  1 x 1 / 1   152 x 152 x 128   ->   152 x 152 x  64  0.379 BFLOPs
   10 conv    128  3 x 3 / 1   152 x 152 x  64   ->   152 x 152 x 128  3.407 BFLOPs
   11 res    8                 152 x 152 x 128   ->   152 x 152 x 128
   12 conv    256  3 x 3 / 2   152 x 152 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   13 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   14 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   15 res   12                  76 x  76 x 256   ->    76 x  76 x 256
   16 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   17 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   18 res   15                  76 x  76 x 256   ->    76 x  76 x 256
   19 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   20 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   21 res   18                  76 x  76 x 256   ->    76 x  76 x 256
   22 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   23 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   24 res   21                  76 x  76 x 256   ->    76 x  76 x 256
   25 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   26 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   27 res   24                  76 x  76 x 256   ->    76 x  76 x 256
   28 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   29 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   30 res   27                  76 x  76 x 256   ->    76 x  76 x 256
   31 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   32 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   33 res   30                  76 x  76 x 256   ->    76 x  76 x 256
   34 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
   35 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
   36 res   33                  76 x  76 x 256   ->    76 x  76 x 256
   37 conv    512  3 x 3 / 2    76 x  76 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   38 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   39 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   40 res   37                  38 x  38 x 512   ->    38 x  38 x 512
   41 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   42 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   43 res   40                  38 x  38 x 512   ->    38 x  38 x 512
   44 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   45 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   46 res   43                  38 x  38 x 512   ->    38 x  38 x 512
   47 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   48 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   49 res   46                  38 x  38 x 512   ->    38 x  38 x 512
   50 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   51 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   52 res   49                  38 x  38 x 512   ->    38 x  38 x 512
   53 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   54 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   55 res   52                  38 x  38 x 512   ->    38 x  38 x 512
   56 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   57 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   58 res   55                  38 x  38 x 512   ->    38 x  38 x 512
   59 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   60 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   61 res   58                  38 x  38 x 512   ->    38 x  38 x 512
   62 conv   1024  3 x 3 / 2    38 x  38 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   63 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   64 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   65 res   62                  19 x  19 x1024   ->    19 x  19 x1024
   66 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   67 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   68 res   65                  19 x  19 x1024   ->    19 x  19 x1024
   69 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   70 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   71 res   68                  19 x  19 x1024   ->    19 x  19 x1024
   72 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   73 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   74 res   71                  19 x  19 x1024   ->    19 x  19 x1024
   75 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   76 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   77 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   78 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   79 conv    512  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 512  0.379 BFLOPs
   80 conv   1024  3 x 3 / 1    19 x  19 x 512   ->    19 x  19 x1024  3.407 BFLOPs
   81 conv    255  1 x 1 / 1    19 x  19 x1024   ->    19 x  19 x 255  0.189 BFLOPs
   82 yolo
   83 route  79
                                           ->   19 x  19 x 512 
   84 conv    256  1 x 1 / 1    19 x  19 x 512   ->    19 x  19 x 256  0.095 BFLOPs
   85 upsample            2x    19 x  19 x 256   ->    38 x  38 x 256
   86 route  85 61
                                   ->   38 x  38 x 768 
   87 conv    256  1 x 1 / 1    38 x  38 x 768   ->    38 x  38 x 256  0.568 BFLOPs
   88 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   89 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   90 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   91 conv    256  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 256  0.379 BFLOPs
   92 conv    512  3 x 3 / 1    38 x  38 x 256   ->    38 x  38 x 512  3.407 BFLOPs
   93 conv    255  1 x 1 / 1    38 x  38 x 512   ->    38 x  38 x 255  0.377 BFLOPs
   94 yolo
   95 route  91
                                           ->   38 x  38 x 256 
   96 conv    128  1 x 1 / 1    38 x  38 x 256   ->    38 x  38 x 128  0.095 BFLOPs
   97 upsample            2x    38 x  38 x 128   ->    76 x  76 x 128
   98 route  97 36
                                   ->   76 x  76 x 384 
   99 conv    128  1 x 1 / 1    76 x  76 x 384   ->    76 x  76 x 128  0.568 BFLOPs
  100 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  101 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
  102 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  103 conv    128  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 128  0.379 BFLOPs
  104 conv    256  3 x 3 / 1    76 x  76 x 128   ->    76 x  76 x 256  3.407 BFLOPs
  105 conv    255  1 x 1 / 1    76 x  76 x 256   ->    76 x  76 x 255  0.754 BFLOPs
  106 yolo
Loading weights from /usr/home/user/darknet/weights/yolov3.weights...opencl_push_array  7fbb9000        0
opencl_push_array       80292400        0
opencl_push_array       7fbb9e00        0
opencl_push_array       80274e80        0
opencl_push_array       80292380        0
opencl_push_array       62a55500        0
opencl_push_array       62a55580        0
opencl_push_array       80f1c4c0        0
opencl_push_array       6c5de800        0
opencl_push_array       80f315c0        0
opencl_push_array       62a4dd00        0
opencl_push_array       62a4de00        0
opencl_push_array       6c5de500        0
opencl_push_array       6c5de600        0
opencl_push_array       6c6ad000        0
opencl_push_array       62a55600        0
opencl_push_array       6c797000        0
opencl_push_array       62a55700        0
opencl_push_array       62a55800        0
opencl_push_array       62a55b00        0
opencl_push_array       62a55b80        0
opencl_push_array       80f70000        0
opencl_push_array       6c5de700        0
opencl_push_array       80f85280        0
opencl_push_array       6c5ded00        0
opencl_push_array       6c662100        0
opencl_push_array       6c662900        0
opencl_push_array       6c662a00        0
opencl_push_array       80fc42c0        0
opencl_push_array       6c5e9800        0
opencl_push_array       80b3e640        0
opencl_push_array       6c5e9600        0
opencl_push_array       6c5e9400        0
opencl_push_array       6c5e8800        0
opencl_push_array       6c5e8600        0
opencl_push_array       81015140        0
opencl_push_array       6c662b00        0
opencl_push_array       8101e180        0
opencl_push_array       6c662c00        0
opencl_push_array       6c662d00        0
opencl_push_array       6c671500        0
opencl_push_array       6c671600        0
opencl_push_array       81813f80        0
opencl_push_array       6c5eb400        0
opencl_push_array       81864140        0
opencl_push_array       6c5eb200        0
opencl_push_array       6c5eb000        0
opencl_push_array       6c5ea400        0
opencl_push_array       6c5ea200        0
opencl_push_array       80b9a9c0        0
opencl_push_array       6c671700        0
opencl_push_array       80d11680        0
opencl_push_array       6c671800        0
opencl_push_array       6c671900        0
opencl_push_array       6c75d300        0
opencl_push_array       6c75d400        0
opencl_push_array       c8052100        0
opencl_push_array       6c5ee600        0
opencl_push_array       c80a3c00        0
opencl_push_array       6c5ee400        0
opencl_push_array       6c5ee200        0
opencl_push_array       6c5ec600        0
opencl_push_array       6c5ec400        0
opencl_push_array       c8196080        1
opencl_push_array       62a13c00        0
opencl_push_array       c8a01540        0
opencl_push_array       62a52c00        0
opencl_push_array       62a53800        0
opencl_push_array       6c5cec00        0
opencl_push_array       6c5cf000        0
opencl_push_array       8191c6c0        0
opencl_push_array       6c5f0800        0
opencl_push_array       c82d7500        0
opencl_push_array       6c5f0600        0
opencl_push_array       6c5f0400        0
opencl_push_array       6c5ef800        0
opencl_push_array       6c5ef600        0
opencl_push_array       c8dc4e00        0
opencl_push_array       6c5cf800        0
opencl_push_array       c9c02140        0
opencl_push_array       6c5cfc00        0
opencl_push_array       6c5da400        0
opencl_push_array       6c68ec00        0
opencl_push_array       6c5cb000        0
opencl_push_array       c834a340        0
opencl_push_array       6c5f2a00        0
opencl_push_array       c836b980        0
opencl_push_array       6c5f2800        0
opencl_push_array       6c5f2600        0
opencl_push_array       6c5f1a00        0
opencl_push_array       6c5f1800        0
opencl_push_array       dd845d80        0
opencl_push_array       6c5cb400        0
opencl_push_array       f5405480        1
opencl_push_array       6c5cb800        0
opencl_push_array       6c5cbc00        0
opencl_push_array       6c5e6400        0
opencl_push_array       6c5e6800        0
opencl_push_array       c83deac0        0
opencl_push_array       6c668c00        0
opencl_push_array       c8f05040        0
opencl_push_array       6c668a00        0
opencl_push_array       6c668800        0
opencl_push_array       6c665c00        0
opencl_push_array       6c665a00        0
opencl_push_array       fe40dd00        0
opencl_push_array       6c5e6c00        0
opencl_push_array       3806080 0
opencl_push_array       6c5e7000        0
opencl_push_array       6c5e7400        0
opencl_push_array       6c872c00        0
opencl_push_array       6c873000        0
opencl_push_array       c8f782c0        0
opencl_push_array       6c66ce00        0
opencl_push_array       c8f99dc0        0
opencl_push_array       6c66cc00        0
opencl_push_array       6c66ca00        0
opencl_push_array       6c66be00        0
opencl_push_array       6c66bc00        0
opencl_push_array       9d0a5c0 0
opencl_push_array       6c873400        0
opencl_push_array       9e4be00 0
opencl_push_array       6c873800        0
opencl_push_array       6c873c00        0
opencl_push_array       6c877400        0
opencl_push_array       6c877800        0
opencl_push_array       c9d6ce40        0
opencl_push_array       6c673000        0
opencl_push_array       c9d8d3c0        0
opencl_push_array       6c66ee00        0
opencl_push_array       6c66ec00        0
opencl_push_array       6c66e000        0
opencl_push_array       6c66de00        0
opencl_push_array       1030b640        0
opencl_push_array       6c877c00        0
opencl_push_array       1044c400        0
opencl_push_array       6c878000        0
opencl_push_array       6c878400        0
opencl_push_array       6c879c00        0
opencl_push_array       6c87a000        0
opencl_push_array       cad03d00        0
opencl_push_array       6c678200        0
opencl_push_array       cad24900        0
opencl_push_array       6c678000        0
opencl_push_array       6c674e00        0
opencl_push_array       6c674200        0
opencl_push_array       6c674000        0
opencl_push_array       14419fc0        0
opencl_push_array       6c87a400        0
opencl_push_array       16a0a040        0
opencl_push_array       6c87a800        0
opencl_push_array       6c87ac00        0
opencl_push_array       6c87d400        0
opencl_push_array       6c87d800        0
opencl_push_array       cad978c0        0
opencl_push_array       6c7e7400        0
opencl_push_array       cadb8940        0
opencl_push_array       6c7e7200        0
opencl_push_array       6c7e7000        0
opencl_push_array       6c68d400        0
opencl_push_array       6c68d200        0
opencl_push_array       1cf034c0        0
opencl_push_array       6c87dc00        0
opencl_push_array       1d044840        0
opencl_push_array       6c87e000        0
opencl_push_array       6c87e400        0
opencl_push_array       6c87fc00        0
opencl_push_array       6c880000        0
opencl_push_array       cadd9780        0
opencl_push_array       6c7e9600        0
opencl_push_array       cc196440        0
opencl_push_array       6c7e9400        0
opencl_push_array       6c7e9200        0
opencl_push_array       6c7e8600        0
opencl_push_array       6c7e8400        0
opencl_push_array       2341bb40        1
opencl_push_array       6c880400        0
opencl_push_array       2355c3c0        0
opencl_push_array       6c880800        0
opencl_push_array       6c880c00        0
opencl_push_array       6c882400        0
opencl_push_array       6c882800        0
opencl_push_array       28405bc0        1
opencl_push_array       6c883000        0
opencl_push_array       28906940        0
opencl_push_array       6c883800        0
opencl_push_array       6c884000        0
opencl_push_array       6c887000        0
opencl_push_array       6c887800        0
opencl_push_array       df505780        0
opencl_push_array       6c882c00        0
opencl_push_array       f5546ac0        0
opencl_push_array       6c7ea000        0
opencl_push_array       6c7ea400        0
opencl_push_array       6c888c00        0
opencl_push_array       6c889000        0
opencl_push_array       2ba986c0        1
opencl_push_array       6c88a000        0
opencl_push_array       2bf99440        0
opencl_push_array       6c88a800        0
opencl_push_array       6c88b000        0
opencl_push_array       6c88e000        0
opencl_push_array       6c88e800        0
opencl_push_array       250bcc0 0
opencl_push_array       6c889400        0
opencl_push_array       74d3c40 0
opencl_push_array       6c889800        0
opencl_push_array       6c889c00        0
opencl_push_array       6c79a400        0
opencl_push_array       6c79a800        0
opencl_push_array       2feb0440        0
opencl_push_array       6c7e3000        0
opencl_push_array       303b1b80        0
opencl_push_array       6c7e3800        0
opencl_push_array       6c7e4000        0
opencl_push_array       6c7f7000        0
opencl_push_array       6c7f7800        0
opencl_push_array       1455af80        0
opencl_push_array       6c79ac00        0
opencl_push_array       1c4deec0        0
opencl_push_array       6c7f8000        0
opencl_push_array       6c7f8400        0
opencl_push_array       6c7f9c00        0
opencl_push_array       6c88f000        0
opencl_push_array       3440e580        0
opencl_push_array       6c7fa000        0
opencl_push_array       3490f4c0        0
opencl_push_array       6c7fa800        0
opencl_push_array       6c7fb000        0
opencl_push_array       6c892000        0
opencl_push_array       6c892800        0
opencl_push_array       26548100        1
opencl_push_array       6c88f400        0
opencl_push_array       324bac80        1
opencl_push_array       6c88f800        0
opencl_push_array       6c88fc00        0
opencl_push_array       6c893400        0
opencl_push_array       6c893800        0
opencl_push_array       388c7d00        0
opencl_push_array       6c894000        0
opencl_push_array       38dc8900        0
opencl_push_array       6c894800        0
opencl_push_array       6c895000        0
opencl_push_array       6c898000        0
opencl_push_array       6c898800        0
opencl_push_array       3c0d7c40        0
opencl_push_array       6c893c00        0
opencl_push_array       3c158c00        0
opencl_push_array       6c7fd000        0
opencl_push_array       6c7fd400        0
opencl_push_array       6c899c00        0
opencl_push_array       6c89a000        0
opencl_push_array       3cf23300        0
opencl_push_array       6c7fe000        0
opencl_push_array       3d4247c0        1
opencl_push_array       6c7fe800        0
opencl_push_array       6c89b000        0
opencl_push_array       6c89e000        0
opencl_push_array       6c89e800        0
opencl_push_array       40432400        0
opencl_push_array       6c89a400        0
opencl_push_array       404b3c00        0
opencl_push_array       6c89a800        0
opencl_push_array       6c89ac00        0
opencl_push_array       6c800400        0
opencl_push_array       6c800800        0
opencl_push_array       415aaa00        1
opencl_push_array       6c801000        0
opencl_push_array       41aab7c0        0
opencl_push_array       6c801800        0
opencl_push_array       6c89f000        0
opencl_push_array       6c8a2000        0
opencl_push_array       6c8a2800        0
opencl_push_array       44dba700        0
opencl_push_array       6c800c00        0
opencl_push_array       44e3b1c0        0
opencl_push_array       6c802000        0
opencl_push_array       6c802400        0
opencl_push_array       6c8a3c00        0
opencl_push_array       6c8a4000        0
opencl_push_array       45c06400        0
opencl_push_array       6c8a5000        0
opencl_push_array       46107640        0
opencl_push_array       6c8a5800        0
opencl_push_array       6c8a6000        0
opencl_push_array       6c8a9000        0
opencl_push_array       6c8a9800        0
opencl_push_array       49416b00        1
opencl_push_array       6c8a4400        0
opencl_push_array       49497580        0
opencl_push_array       6c8a4800        0
opencl_push_array       6c8a4c00        0
opencl_push_array       6c8aa400        0
opencl_push_array       6c8aa800        0
opencl_push_array       4a262f80        0
opencl_push_array       6c835000        0
opencl_push_array       4a7633c0        0
opencl_push_array       6c835800        0
opencl_push_array       6c837000        0
opencl_push_array       6c8ad000        0
opencl_push_array       6c8ad800        0
opencl_push_array       e0e02ec0        4
opencl_push_array       6c5e1000        0
opencl_push_array       e2203c00        2
opencl_push_array       6c5e3000        0
opencl_push_array       6c838000        0
opencl_push_array       6c8b3000        0
opencl_push_array       6c8b4000        0
opencl_push_array       4e67a0c0        0
opencl_push_array       6c839000        0
opencl_push_array       4e87b480        0
opencl_push_array       6c839800        0
opencl_push_array       6c8b7000        0
opencl_push_array       6c8ba000        0
opencl_push_array       6c8ba800        0
opencl_push_array       e5e06d00        3
opencl_push_array       6c8b5000        0
opencl_push_array       e72074c0        3
opencl_push_array       6c8b6000        0
opencl_push_array       6c83a000        0
opencl_push_array       6c8c0000        0
opencl_push_array       6c8c1000        0
opencl_push_array       50902780        1
opencl_push_array       6c83b000        0
opencl_push_array       50b03400        0
opencl_push_array       6c83b800        0
opencl_push_array       6c843000        0
opencl_push_array       6c8c8000        0
opencl_push_array       6c8c8800        0
opencl_push_array       eae0a800        3
opencl_push_array       6c8c2000        0
opencl_push_array       ec20b340        2
opencl_push_array       6c8c3000        0
opencl_push_array       7f7ce000        0
opencl_push_array       7f7d4000        0
opencl_push_array       7f7d5000        0
opencl_push_array       52959f40        0
opencl_push_array       6c844000        0
opencl_push_array       52b5a000        0
opencl_push_array       6c844800        0
opencl_push_array       7f7d8000        0
opencl_push_array       7f7db000        0
opencl_push_array       7f7db800        0
opencl_push_array       efe0e880        2
opencl_push_array       7f7d6000        0
opencl_push_array       f120f800        3
opencl_push_array       7f7d7000        0
opencl_push_array       6c845000        0
opencl_push_array       7f7e1000        0
opencl_push_array       7f7e2000        0
opencl_push_array       54a71980        1
opencl_push_array       6c846000        0
opencl_push_array       54c72440        0
opencl_push_array       6c846800        0
opencl_push_array       7f7e5000        0
opencl_push_array       7f7e8000        0
opencl_push_array       7f7e8800        0
opencl_push_array       66e02a80        3
opencl_push_array       7f7e3000        0
opencl_push_array       68203340        3
opencl_push_array       7f7e4000        0
opencl_push_array       6c847000        0
opencl_push_array       7f7ed000        0
opencl_push_array       7f7f2000        0
opencl_push_array       56b89940        1
opencl_push_array       6c849000        0
opencl_push_array       56d8a500        0
opencl_push_array       6c849800        0
opencl_push_array       7f7f5000        0
opencl_push_array       7f7f8000        0
opencl_push_array       7f7f8800        0
opencl_push_array       6be06d40        3
opencl_push_array       7f7f3000        0
opencl_push_array       6d207980        3
opencl_push_array       7f7f4000        0
opencl_push_array       7f7f9000        0
opencl_push_array       7f7ff000        0
opencl_push_array       7f800000        0
opencl_push_array       5869d680        1
opencl_push_array       6c84a000        0
opencl_push_array       5889e000        0
opencl_push_array       6c84a800        0
opencl_push_array       7f803000        0
opencl_push_array       7f806000        0
opencl_push_array       7f806800        0
opencl_push_array       70e0adc0        3
opencl_push_array       7f801000        0
opencl_push_array       7220b0c0        3
opencl_push_array       7f802000        0
opencl_push_array       6c84b000        0
opencl_push_array       7f80c000        0
opencl_push_array       7f80d000        0
opencl_push_array       5a1b1780        1
opencl_push_array       7f810000        0
opencl_push_array       5a3b2a00        0
opencl_push_array       7f810800        0
opencl_push_array       7f811000        0
opencl_push_array       7f814000        0
opencl_push_array       7f814800        0
opencl_push_array       75e0e040        3
opencl_push_array       7f80e000        0
opencl_push_array       7720f840        3
opencl_push_array       7f80f000        0
opencl_push_array       6c84c000        0
opencl_push_array       7f819000        0
opencl_push_array       7f81a000        0
opencl_push_array       5bcc52c0        0
opencl_push_array       6c8aac00        0
opencl_push_array       5bdc6b40        0
opencl_push_array       6c84e000        0
opencl_push_array       5c551f80        1
opencl_push_array       6c84ec00        0
opencl_push_array       5c5d2640        0
opencl_push_array       6c84f000        0
opencl_push_array       6c84f400        0
opencl_push_array       6c850c00        0
opencl_push_array       7f81d000        0
opencl_push_array       5e4a5cc0        1
opencl_push_array       7f81d400        0
opencl_push_array       5e566440        0
opencl_push_array       7f81d800        0
opencl_push_array       7f81dc00        0
opencl_push_array       6c852400        0
opencl_push_array       6c852800        0
opencl_push_array       5f3f1c40        25
opencl_push_array       7f81e000        0
opencl_push_array       5f8f2500        11
opencl_push_array       7f81e800        0
opencl_push_array       7f81f000        0
opencl_push_array       7f822000        0
opencl_push_array       7f822800        0
opencl_push_array       61ffd5c0        1
opencl_push_array       6c852c00        0
opencl_push_array       6207eec0        2
opencl_push_array       6c853000        0
opencl_push_array       6c853400        0
opencl_push_array       7f823c00        0
opencl_push_array       7f827000        0
opencl_push_array       62e495c0        10
opencl_push_array       6c854000        0
opencl_push_array       6334a1c0        3
opencl_push_array       6c854800        0
opencl_push_array       7f828000        0
opencl_push_array       7f82b000        0
opencl_push_array       7f82b800        0
opencl_push_array       6444fe40        2
opencl_push_array       7f827400        0
opencl_push_array       644d0140        2
opencl_push_array       7f827800        0
opencl_push_array       7f827c00        0
opencl_push_array       7f833400        0
opencl_push_array       7f833800        0
opencl_push_array       7e8afac0        8
opencl_push_array       6c862000        0
opencl_push_array       7edb0540        6
opencl_push_array       6c862800        0
opencl_push_array       7f839000        0
opencl_push_array       7f87a000        0
opencl_push_array       7f87a800        0
opencl_push_array       814bba80        0
opencl_push_array       7f833c00        0
opencl_push_array       8153cfc0        1
opencl_push_array       6c863000        0
opencl_push_array       7fd51a00        1
opencl_push_array       6c868e00        0
opencl_push_array       f55cce00        0
opencl_push_array       6c868c00        0
opencl_push_array       6c868a00        0
opencl_push_array       6c867e00        0
opencl_push_array       6c867c00        0
opencl_push_array       d5b8640 1
opencl_push_array       6c86a400        0
opencl_push_array       265c9a80        0
opencl_push_array       6c86a200        0
opencl_push_array       6c86a000        0
opencl_push_array       6c869400        0
opencl_push_array       6c869200        0
opencl_push_array       853181c0        2
opencl_push_array       6c863c00        0
opencl_push_array       85459600        2
opencl_push_array       6c864000        0
opencl_push_array       6c864400        0
opencl_push_array       6c865c00        0
opencl_push_array       6c866000        0
opencl_push_array       145dbb40        0
opencl_push_array       6c86c000        0
opencl_push_array       325dc0c0        0
opencl_push_array       6c86be00        0
opencl_push_array       6c86bc00        0
opencl_push_array       6c86b000        0
opencl_push_array       6c86ae00        0
opencl_push_array       8a0555c0        1
opencl_push_array       6c866400        0
opencl_push_array       8a196740        3
opencl_push_array       6c866800        0
opencl_push_array       6c866c00        0
opencl_push_array       7fafd400        0
opencl_push_array       7fafd800        0
opencl_push_array       8d561f40        0
opencl_push_array       6c86dc00        0
opencl_push_array       8d582500        2
opencl_push_array       6c86da00        0
opencl_push_array       6c86d800        0
opencl_push_array       6c86cc00        0
opencl_push_array       6c86ca00        0
opencl_push_array       8edfd340        0
opencl_push_array       7fafdc00        0
opencl_push_array       8ef3e9c0        0
opencl_push_array       7fafe000        0
opencl_push_array       7fafe400        0
opencl_push_array       7fb04c00        0
opencl_push_array       7fb05000        0
opencl_push_array       92309300        0
opencl_push_array       7fb05400        0
opencl_push_array       9234ae40        1
opencl_push_array       7fb05800        0
done!
opencl_push_array       96203580        0
fill_kernel     7
im2col_gpu_kernel       19

OpenCL error -11 on line 215 of /wrkdirs/usr/ports/math/clblas/work/clBLAS-2.10/src/library/blas/xgemm.cc
Assertion failed: (false), function makeGemmKernel, file /wrkdirs/usr/ports/math/clblas/work/clBLAS-2.10/src/library/blas/xgemm.cc, line 215.

Abort trap (core dumped)

Thanks.

sowson commented 1 year ago

For no annotations make sure you probably did (in image.c):

image ilfps = get_label(alphabet, sprintf(lfps, "%.2f", fps), (im.h * .03));

and you should:

sprintf(lfps, "%.2f", fps); image ilfps = get_label(alphabet, lfps, (im.h * .03));

For clBLAS try: https://github.com/sowson/clBLAS https://github.com/sowson/clBLAS ;-).

not enable multi-gpu flag it is experimental! for my custom gemm.

Thank you very much!

On 11 Oct 2022, at 09:08, Unixxx @.***> wrote:

I turned off "Multi-GPU" and recompiled:

option(DARKNET_GPU_MULTI "Enable OpenCL multi-GPU support" OFF)

Now get an error:

99 conv 128 1 x 1 / 1 76 x 76 x 384 -> 76 x 76 x 128 0.568 BFLOPs 100 conv 256 3 x 3 / 1 76 x 76 x 128 -> 76 x 76 x 256 3.407 BFLOPs 101 conv 128 1 x 1 / 1 76 x 76 x 256 -> 76 x 76 x 128 0.379 BFLOPs 102 conv 256 3 x 3 / 1 76 x 76 x 128 -> 76 x 76 x 256 3.407 BFLOPs 103 conv 128 1 x 1 / 1 76 x 76 x 256 -> 76 x 76 x 128 0.379 BFLOPs 104 conv 256 3 x 3 / 1 76 x 76 x 128 -> 76 x 76 x 256 3.407 BFLOPs 105 conv 255 1 x 1 / 1 76 x 76 x 256 -> 76 x 76 x 255 0.754 BFLOPs 106 yolo Loading weights from /usr/home/user/darknet/weights/yolov3.weights...done!

OpenCL error -11 on line 215 of /wrkdirs/usr/ports/math/clblas/work/clBLAS-2.10/src/library/blas/xgemm.cc Assertion failed: (false), function makeGemmKernel, file /wrkdirs/usr/ports/math/clblas/work/clBLAS-2.10/src/library/blas/xgemm.cc, line 215.

Abort trap (core dumped) Thanks.

— Reply to this email directly, view it on GitHub https://github.com/sowson/darknet/issues/79#issuecomment-1274187839, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIC6NQBBLWHRCYHA7VRBVM3WCUHARANCNFSM6AAAAAAQ7IPBXA. You are receiving this because you commented.

rajhlinux commented 1 year ago

Understood, will try your suggestions.

I have done the modification for image.c previously from your patch.

Thank You.

rajhlinux commented 1 year ago

I am trying to compile your repo for clBAS: https://github.com/sowson/clBLAS

I encounter errors early on when using GCC.

So I use clang:

$ export CC=/usr/bin/clang
$ export CXX=/usr/bin/clang++

I did not edit the CmakeList.txt file, and simply entered the following:

$ git clone https://github.com/sowson/clBLAS.git
$ cd clBLAS && cd src && mkdir build && cd build
$ cmake ..
$ make -j 8

I encounter errors around 73% compilation:

/usr/home/user/clBLAS/src/library/blas/AutoGemm/UserGemmKernelSources/sgemm_Col_TN_B1_MX032_NX032_KX16_src.cpp:22:10: note: previous definition is here
#define  M2x2 \
         ^
In file included from /usr/home/user/clBLAS/src/build/include/AutoGemmIncludes/AutoGemmKernelSources.cpp:10:
In file included from /usr/home/user/clBLAS/src/library/blas/AutoGemm/UserGemmKernelSources/UserGemmKernelSourceIncludes.cpp:47:
/usr/home/user/clBLAS/src/library/blas/AutoGemm/UserGemmKernelSources/sgemm_Col_NN_B1_MX032_NX032_KX16_BRANCH_src.cpp:27:10: warning: 'M2x2' macro redefined [-Wmacro-redefined]
#define  M2x2 \
         ^
/usr/home/user/clBLAS/src/library/blas/AutoGemm/UserGemmKernelSources/sgemm_Col_NT_B1_MX032_NX032_KX16_SINGLE_src.cpp:30:10: note: previous definition is here
#define  M2x2 \
         ^
1 warning generated.
1 warning generated.
1 warning generated.
4 warnings generated.
1 warning generated.
[ 71%] Linking CXX shared library libclBLAS.so
[ 71%] Built target clBLAS
[ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/func-thread.cpp.o
[ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/func-queue.cpp.o
[ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/test-functional.cpp.o
[ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/func-error.cpp.o
[ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/func-event.cpp.o
[ 71%] Building C object tests/CMakeFiles/test-short.dir/correctness/blas-lapack.c.o
[ 71%] Building C object tests/CMakeFiles/test-correctness.dir/correctness/blas-lapack.c.o
[ 72%] Building C object tests/CMakeFiles/test-medium.dir/correctness/blas-lapack.c.o
[ 73%] Building CXX object tests/CMakeFiles/test-short.dir/correctness/BlasBase-corr.cpp.o
[ 73%] Building CXX object tests/CMakeFiles/test-correctness.dir/correctness/BlasBase-corr.cpp.o
[ 73%] Building CXX object tests/CMakeFiles/test-medium.dir/correctness/BlasBase-corr.cpp.o
In file included from /usr/home/user/clBLAS/src/tests/functional/func-event.cpp:21:
In file included from /usr/home/user/clBLAS/src/clBLAS.h:35:
In file included from /usr/local/include/CL/cl.h:20:
/usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]
#pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
        ^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-queue.cpp:21:
In file included from /usr/home/user/clBLAS/src/clBLAS.h:35:
In file included from /usr/local/include/CL/cl.h:20:
/usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]
#pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
        ^
In file included from /usr/home/user/clBLAS/src/tests/functional/test-functional.cpp:19:
In file included from /usr/home/user/clBLAS/src/tests/include/BlasBase.h:21:
In file included from /usr/home/user/clBLAS/src/clBLAS.h:35:
In file included from /usr/local/include/CL/cl.h:20:
/usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]
#pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
        ^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-error.cpp:19:
In file included from /usr/home/user/clBLAS/src/clBLAS.h:35:
In file included from /usr/local/include/CL/cl.h:20:
/usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]
#pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
        ^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-event.cpp:30:
In file included from /usr/home/user/clBLAS/src/tests/functional/func.h:68:
/usr/home/user/clBLAS/src/tests/include/her.h:44:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:45:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,    // order
        ^
/usr/home/user/clBLAS/src/tests/include/her.h:72:18: error: no member named 'tr1' in namespace 'std'
                order = ::std::tr1::get<0>(GetParam());
                        ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:72:30: error: use of undeclared identifier 'GetParam'
                order = ::std::tr1::get<0>(GetParam());
                                           ^
/usr/home/user/clBLAS/src/tests/include/her.h:73:17: error: no member named 'tr1' in namespace 'std'
                uplo = ::std::tr1::get<1>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:73:29: error: use of undeclared identifier 'GetParam'
                uplo = ::std::tr1::get<1>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:74:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:74:32: error: use of undeclared identifier 'GetParam'
        N = ::std::tr1::get<2>(GetParam());
                               ^
/usr/home/user/clBLAS/src/tests/include/her.h:75:24: error: no member named 'tr1' in namespace 'std'
        alpha = ::std::tr1::get<3>(GetParam());
                ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:75:36: error: use of undeclared identifier 'GetParam'
        alpha = ::std::tr1::get<3>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/her.h:76:22: error: no member named 'tr1' in namespace 'std'
        lda = ::std::tr1::get<4>(GetParam());
              ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:76:34: error: use of undeclared identifier 'GetParam'
        lda = ::std::tr1::get<4>(GetParam());
                                 ^
/usr/home/user/clBLAS/src/tests/include/her.h:77:23: error: no member named 'tr1' in namespace 'std'
        incx = ::std::tr1::get<5>(GetParam());
               ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:77:35: error: use of undeclared identifier 'GetParam'
        incx = ::std::tr1::get<5>(GetParam());
                                  ^
/usr/home/user/clBLAS/src/tests/include/her.h:78:17: error: no member named 'tr1' in namespace 'std'
                offa = ::std::tr1::get<6>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:78:29: error: use of undeclared identifier 'GetParam'
                offa = ::std::tr1::get<6>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:79:17: error: no member named 'tr1' in namespace 'std'
                offx = ::std::tr1::get<7>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:79:29: error: use of undeclared identifier 'GetParam'
                offx = ::std::tr1::get<7>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:80:35: error: no member named 'tr1' in namespace 'std'
        numCommandQueues = ::std::tr1::get<8>(GetParam());
                           ~~~~~~~^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-queue.cpp:31:
In file included from /usr/home/user/clBLAS/src/tests/functional/func.h:68:
/usr/home/user/clBLAS/src/tests/include/her.h:44:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:45:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,    // order
        ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
/usr/home/user/clBLAS/src/tests/include/her.h:72:18: error: no member named 'tr1' in namespace 'std'
                order = ::std::tr1::get<0>(GetParam());
                        ~~~~~~~^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-error.cpp:25:
In file included from /usr/home/user/clBLAS/src/tests/functional/func.h:68:
/usr/home/user/clBLAS/src/tests/include/her.h:44:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:45:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,    // order
        ^
/usr/home/user/clBLAS/src/tests/include/her.h:72:30: error: use of undeclared identifier 'GetParam'
                order = ::std::tr1::get<0>(GetParam());
                                           ^
/usr/home/user/clBLAS/src/tests/include/her.h:72:18: error: no member named 'tr1' in namespace 'std'
                order = ::std::tr1::get<0>(GetParam());
                        ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:73:17: error: no member named 'tr1' in namespace 'std'
                uplo = ::std::tr1::get<1>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:72:30: error: use of undeclared identifier 'GetParam'
                order = ::std::tr1::get<0>(GetParam());
                                           ^
/usr/home/user/clBLAS/src/tests/include/her.h:73:29: error: use of undeclared identifier 'GetParam'
                uplo = ::std::tr1::get<1>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:73:17: error: no member named 'tr1' in namespace 'std'
                uplo = ::std::tr1::get<1>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:74:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:73:29: error: use of undeclared identifier 'GetParam'
                uplo = ::std::tr1::get<1>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:74:32: error: use of undeclared identifier 'GetParam'
        N = ::std::tr1::get<2>(GetParam());
                               ^
In file included from /usr/home/user/clBLAS/src/tests/correctness/BlasBase-corr.cpp:19:
In file included from /usr/home/user/clBLAS/src/clBLAS.h:35:
In file included from /usr/local/include/CL/cl.h:20:
/usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]
#pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
        ^
/usr/home/user/clBLAS/src/tests/include/her.h:74:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:75:24: error: no member named 'tr1' in namespace 'std'
        alpha = ::std::tr1::get<3>(GetParam());
                ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:74:32: error: use of undeclared identifier 'GetParam'
        N = ::std::tr1::get<2>(GetParam());
                               ^
/usr/home/user/clBLAS/src/tests/include/her.h:75:36: error: use of undeclared identifier 'GetParam'
        alpha = ::std::tr1::get<3>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/her.h:76:22: error: no member named 'tr1' in namespace 'std'
/usr/home/user/clBLAS/src/tests/include/her.h:75:24: error: no member named 'tr1' in namespace 'std'
        alpha = ::std::tr1::get<3>(GetParam());
                ~~~~~~~^
        lda = ::std::tr1::get<4>(GetParam());
              ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:76:34: error: use of undeclared identifier 'GetParam'
        lda = ::std::tr1::get<4>(GetParam());
                                 ^
/usr/home/user/clBLAS/src/tests/include/her.h:75:36: error: use of undeclared identifier 'GetParam'
        alpha = ::std::tr1::get<3>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/her.h:76:22: error: no member named 'tr1' in namespace 'std'
        lda = ::std::tr1::get<4>(GetParam());
              ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:76:34: error: use of undeclared identifier 'GetParam'
        lda = ::std::tr1::get<4>(GetParam());
                                 ^
/usr/home/user/clBLAS/src/tests/include/her.h:77:23: error: no member named 'tr1' in namespace 'std'
        incx = ::std::tr1::get<5>(GetParam());
               ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:77:23: error: no member named 'tr1' in namespace 'std'
        incx = ::std::tr1::get<5>(GetParam());
               ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:77:35: error: use of undeclared identifier 'GetParam'
        incx = ::std::tr1::get<5>(GetParam());
                                  ^
/usr/home/user/clBLAS/src/tests/include/her.h:78:17: error: no member named 'tr1' in namespace 'std'
                offa = ::std::tr1::get<6>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:77:35: error: use of undeclared identifier 'GetParam'
        incx = ::std::tr1::get<5>(GetParam());
                                  ^
/usr/home/user/clBLAS/src/tests/include/her.h:78:29: error: use of undeclared identifier 'GetParam'
                offa = ::std::tr1::get<6>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:78:17: error: no member named 'tr1' in namespace 'std'
                offa = ::std::tr1::get<6>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:79:17: error: no member named 'tr1' in namespace 'std'
                offx = ::std::tr1::get<7>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:78:29: error: use of undeclared identifier 'GetParam'
                offa = ::std::tr1::get<6>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:79:29: error: use of undeclared identifier 'GetParam'
                offx = ::std::tr1::get<7>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:80:35: error: no member named 'tr1' in namespace 'std'
        numCommandQueues = ::std::tr1::get<8>(GetParam());
                           ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:79:17: error: no member named 'tr1' in namespace 'std'
                offx = ::std::tr1::get<7>(GetParam());
                       ~~~~~~~^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
/usr/home/user/clBLAS/src/tests/include/her.h:79:29: error: use of undeclared identifier 'GetParam'
                offx = ::std::tr1::get<7>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:80:35: error: no member named 'tr1' in namespace 'std'
        numCommandQueues = ::std::tr1::get<8>(GetParam());
                           ~~~~~~~^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
In file included from /usr/home/user/clBLAS/src/tests/functional/func-thread.cpp:21:
In file included from /usr/home/user/clBLAS/src/clBLAS.h:35:
1 warning generated.
[ 73%] Building CXX object tests/CMakeFiles/test-correctness.dir/correctness/corr-gemm.cpp.o
1 warning and 20 errors generated.
--- tests/CMakeFiles/test-functional.dir/functional/func-event.cpp.o ---
*** [tests/CMakeFiles/test-functional.dir/functional/func-event.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/clBLAS/src/build
--- tests/CMakeFiles/test-short.dir/all ---
*** [tests/CMakeFiles/test-short.dir/all] Error code 6

make[1]: stopped in /usr/home/user/clBLAS/src/build
--- tests/CMakeFiles/test-medium.dir/all ---
*** [tests/CMakeFiles/test-medium.dir/all] Error code 6

make[1]: stopped in /usr/home/user/clBLAS/src/build
--- tests/CMakeFiles/test-correctness.dir/all ---
*** [tests/CMakeFiles/test-correctness.dir/all] Error code 6

make[1]: stopped in /usr/home/user/clBLAS/src/build
1 warning and 20 errors generated.
In file included from /usr/local/include/CL/cl.h:20:
--- tests/CMakeFiles/test-functional.dir/functional/func-queue.cpp.o ---
*** [tests/CMakeFiles/test-functional.dir/functional/func-queue.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/clBLAS/src/build
/usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]
#pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
        ^
1 warning and 20 errors generated.
--- tests/CMakeFiles/test-functional.dir/functional/func-error.cpp.o ---
*** [tests/CMakeFiles/test-functional.dir/functional/func-error.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/clBLAS/src/build
In file included from /usr/home/user/clBLAS/src/tests/functional/func-thread.cpp:30:
/usr/home/user/clBLAS/src/tests/include/symv.h:33:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:34:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,     // order
        ^
/usr/home/user/clBLAS/src/tests/include/symv.h:73:24: error: no member named 'tr1' in namespace 'std'
        order = ::std::tr1::get<0>(GetParam());
                ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:73:36: error: use of undeclared identifier 'GetParam'
        order = ::std::tr1::get<0>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/symv.h:74:23: error: no member named 'tr1' in namespace 'std'
        uplo = ::std::tr1::get<1>(GetParam());
               ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:74:35: error: use of undeclared identifier 'GetParam'
        uplo = ::std::tr1::get<1>(GetParam());
                                  ^
/usr/home/user/clBLAS/src/tests/include/symv.h:75:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:75:32: error: use of undeclared identifier 'GetParam'
        N = ::std::tr1::get<2>(GetParam());
                               ^
/usr/home/user/clBLAS/src/tests/include/symv.h:76:24: error: no member named 'tr1' in namespace 'std'
        extra = ::std::tr1::get<3>(GetParam());
                ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:76:36: error: use of undeclared identifier 'GetParam'
        extra = ::std::tr1::get<3>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/symv.h:81:35: error: no member named 'tr1' in namespace 'std'
        numCommandQueues = ::std::tr1::get<4>(GetParam());
                           ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:81:47: error: use of undeclared identifier 'GetParam'
        numCommandQueues = ::std::tr1::get<4>(GetParam());
                                              ^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-thread.cpp:31:
In file included from /usr/home/user/clBLAS/src/tests/functional/func.h:68:
/usr/home/user/clBLAS/src/tests/include/her.h:44:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:45:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,    // order
        ^
/usr/home/user/clBLAS/src/tests/include/her.h:72:18: error: no member named 'tr1' in namespace 'std'
                order = ::std::tr1::get<0>(GetParam());
                        ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:72:30: error: use of undeclared identifier 'GetParam'
                order = ::std::tr1::get<0>(GetParam());
                                           ^
/usr/home/user/clBLAS/src/tests/include/her.h:73:17: error: no member named 'tr1' in namespace 'std'
                uplo = ::std::tr1::get<1>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:73:29: error: use of undeclared identifier 'GetParam'
                uplo = ::std::tr1::get<1>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:74:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
1 warning and 20 errors generated.
--- tests/CMakeFiles/test-functional.dir/functional/func-thread.cpp.o ---
*** [tests/CMakeFiles/test-functional.dir/functional/func-thread.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/clBLAS/src/build
4 errors

make[2]: stopped in /usr/home/user/clBLAS/src/build
--- tests/CMakeFiles/test-functional.dir/all ---
*** [tests/CMakeFiles/test-functional.dir/all] Error code 2

make[1]: stopped in /usr/home/user/clBLAS/src/build
4 errors

make[1]: stopped in /usr/home/user/clBLAS/src/build
*** [all] Error code 2

make: stopped in /usr/home/user/clBLAS/src/build
1 error

make: stopped in /usr/home/user/clBLAS/src/build

Thanks

sowson commented 1 year ago

in my repo there is folder patches, there should be clblast.patch to apply, maybe you can try use CLBlast instead?

I think clblast is standard pkg in distro: https://distrowatch.com/table-mobile.php?distribution=freebsd&pkglist=true&version=13.1 https://distrowatch.com/table-mobile.php?distribution=freebsd&pkglist=true&version=13.1

Thank you!

On 11 Oct 2022, at 10:17, Unixxx @.***> wrote:

I am trying to compile your repo for clBAS: https://github.com/sowson/clBLAS https://github.com/sowson/clBLAS I encounter errors early on when using GCC.

So I use clang:

$ export CC=/usr/bin/clang $ export CXX=/usr/bin/clang++ I did not edit the CmakeList.txt file, and simply entered the following:

$ git clone https://github.com/sowson/clBLAS.git $ cd clBLAS && cd src && mkdir build && cd build $ cmake .. $ make -j 8 I encounter errors around 73% compilation:

/usr/home/user/clBLAS/src/library/blas/AutoGemm/UserGemmKernelSources/sgemm_Col_TN_B1_MX032_NX032_KX16_src.cpp:22:10: note: previous definition is here

define M2x2 \

     ^

In file included from /usr/home/user/clBLAS/src/build/include/AutoGemmIncludes/AutoGemmKernelSources.cpp:10: In file included from /usr/home/user/clBLAS/src/library/blas/AutoGemm/UserGemmKernelSources/UserGemmKernelSourceIncludes.cpp:47: /usr/home/user/clBLAS/src/library/blas/AutoGemm/UserGemmKernelSources/sgemm_Col_NN_B1_MX032_NX032_KX16_BRANCH_src.cpp:27:10: warning: 'M2x2' macro redefined [-Wmacro-redefined]

define M2x2 \

     ^

/usr/home/user/clBLAS/src/library/blas/AutoGemm/UserGemmKernelSources/sgemm_Col_NT_B1_MX032_NX032_KX16_SINGLE_src.cpp:30:10: note: previous definition is here

define M2x2 \

     ^

1 warning generated. 1 warning generated. 1 warning generated. 4 warnings generated. 1 warning generated. [ 71%] Linking CXX shared library libclBLAS.so [ 71%] Built target clBLAS [ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/func-thread.cpp.o [ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/func-queue.cpp.o [ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/test-functional.cpp.o [ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/func-error.cpp.o [ 71%] Building CXX object tests/CMakeFiles/test-functional.dir/functional/func-event.cpp.o [ 71%] Building C object tests/CMakeFiles/test-short.dir/correctness/blas-lapack.c.o [ 71%] Building C object tests/CMakeFiles/test-correctness.dir/correctness/blas-lapack.c.o [ 72%] Building C object tests/CMakeFiles/test-medium.dir/correctness/blas-lapack.c.o [ 73%] Building CXX object tests/CMakeFiles/test-short.dir/correctness/BlasBase-corr.cpp.o [ 73%] Building CXX object tests/CMakeFiles/test-correctness.dir/correctness/BlasBase-corr.cpp.o [ 73%] Building CXX object tests/CMakeFiles/test-medium.dir/correctness/BlasBase-corr.cpp.o In file included from /usr/home/user/clBLAS/src/tests/functional/func-event.cpp:21: In file included from /usr/home/user/clBLAS/src/clBLAS.h:35: In file included from /usr/local/include/CL/cl.h:20: /usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]

pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")

    ^

In file included from /usr/home/user/clBLAS/src/tests/functional/func-queue.cpp:21: In file included from /usr/home/user/clBLAS/src/clBLAS.h:35: In file included from /usr/local/include/CL/cl.h:20: /usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]

pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")

    ^

In file included from /usr/home/user/clBLAS/src/tests/functional/test-functional.cpp:19: In file included from /usr/home/user/clBLAS/src/tests/include/BlasBase.h:21: In file included from /usr/home/user/clBLAS/src/clBLAS.h:35: In file included from /usr/local/include/CL/cl.h:20: /usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]

pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")

    ^

In file included from /usr/home/user/clBLAS/src/tests/functional/func-error.cpp:19: In file included from /usr/home/user/clBLAS/src/clBLAS.h:35: In file included from /usr/local/include/CL/cl.h:20: /usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]

pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")

    ^

In file included from /usr/home/user/clBLAS/src/tests/functional/func-event.cpp:30: In file included from /usr/home/user/clBLAS/src/tests/functional/func.h:68: /usr/home/user/clBLAS/src/tests/include/her.h:44:12: error: no member named 'tr1' in namespace 'std' ::std::tr1::tuple<


/usr/home/user/clBLAS/src/tests/include/her.h:45:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,    // order
        ^
/usr/home/user/clBLAS/src/tests/include/her.h:72:18: error: no member named 'tr1' in namespace 'std'
                order = ::std::tr1::get<0>(GetParam());
                        ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:72:30: error: use of undeclared identifier 'GetParam'
                order = ::std::tr1::get<0>(GetParam());
                                           ^
/usr/home/user/clBLAS/src/tests/include/her.h:73:17: error: no member named 'tr1' in namespace 'std'
                uplo = ::std::tr1::get<1>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:73:29: error: use of undeclared identifier 'GetParam'
                uplo = ::std::tr1::get<1>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:74:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:74:32: error: use of undeclared identifier 'GetParam'
        N = ::std::tr1::get<2>(GetParam());
                               ^
/usr/home/user/clBLAS/src/tests/include/her.h:75:24: error: no member named 'tr1' in namespace 'std'
        alpha = ::std::tr1::get<3>(GetParam());
                ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:75:36: error: use of undeclared identifier 'GetParam'
        alpha = ::std::tr1::get<3>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/her.h:76:22: error: no member named 'tr1' in namespace 'std'
        lda = ::std::tr1::get<4>(GetParam());
              ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:76:34: error: use of undeclared identifier 'GetParam'
        lda = ::std::tr1::get<4>(GetParam());
                                 ^
/usr/home/user/clBLAS/src/tests/include/her.h:77:23: error: no member named 'tr1' in namespace 'std'
        incx = ::std::tr1::get<5>(GetParam());
               ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:77:35: error: use of undeclared identifier 'GetParam'
        incx = ::std::tr1::get<5>(GetParam());
                                  ^
/usr/home/user/clBLAS/src/tests/include/her.h:78:17: error: no member named 'tr1' in namespace 'std'
                offa = ::std::tr1::get<6>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:78:29: error: use of undeclared identifier 'GetParam'
                offa = ::std::tr1::get<6>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:79:17: error: no member named 'tr1' in namespace 'std'
                offx = ::std::tr1::get<7>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:79:29: error: use of undeclared identifier 'GetParam'
                offx = ::std::tr1::get<7>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:80:35: error: no member named 'tr1' in namespace 'std'
        numCommandQueues = ::std::tr1::get<8>(GetParam());
                           ~~~~~~~^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-queue.cpp:31:
In file included from /usr/home/user/clBLAS/src/tests/functional/func.h:68:
/usr/home/user/clBLAS/src/tests/include/her.h:44:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:45:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,    // order
        ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
/usr/home/user/clBLAS/src/tests/include/her.h:72:18: error: no member named 'tr1' in namespace 'std'
                order = ::std::tr1::get<0>(GetParam());
                        ~~~~~~~^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-error.cpp:25:
In file included from /usr/home/user/clBLAS/src/tests/functional/func.h:68:
/usr/home/user/clBLAS/src/tests/include/her.h:44:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:45:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,    // order
        ^
/usr/home/user/clBLAS/src/tests/include/her.h:72:30: error: use of undeclared identifier 'GetParam'
                order = ::std::tr1::get<0>(GetParam());
                                           ^
/usr/home/user/clBLAS/src/tests/include/her.h:72:18: error: no member named 'tr1' in namespace 'std'
                order = ::std::tr1::get<0>(GetParam());
                        ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:73:17: error: no member named 'tr1' in namespace 'std'
                uplo = ::std::tr1::get<1>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:72:30: error: use of undeclared identifier 'GetParam'
                order = ::std::tr1::get<0>(GetParam());
                                           ^
/usr/home/user/clBLAS/src/tests/include/her.h:73:29: error: use of undeclared identifier 'GetParam'
                uplo = ::std::tr1::get<1>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:73:17: error: no member named 'tr1' in namespace 'std'
                uplo = ::std::tr1::get<1>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:74:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:73:29: error: use of undeclared identifier 'GetParam'
                uplo = ::std::tr1::get<1>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:74:32: error: use of undeclared identifier 'GetParam'
        N = ::std::tr1::get<2>(GetParam());
                               ^
In file included from /usr/home/user/clBLAS/src/tests/correctness/BlasBase-corr.cpp:19:
In file included from /usr/home/user/clBLAS/src/clBLAS.h:35:
In file included from /usr/local/include/CL/cl.h:20:
/usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]
#pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
        ^
/usr/home/user/clBLAS/src/tests/include/her.h:74:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:75:24: error: no member named 'tr1' in namespace 'std'
        alpha = ::std::tr1::get<3>(GetParam());
                ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:74:32: error: use of undeclared identifier 'GetParam'
        N = ::std::tr1::get<2>(GetParam());
                               ^
/usr/home/user/clBLAS/src/tests/include/her.h:75:36: error: use of undeclared identifier 'GetParam'
        alpha = ::std::tr1::get<3>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/her.h:76:22: error: no member named 'tr1' in namespace 'std'
/usr/home/user/clBLAS/src/tests/include/her.h:75:24: error: no member named 'tr1' in namespace 'std'
        alpha = ::std::tr1::get<3>(GetParam());
                ~~~~~~~^
        lda = ::std::tr1::get<4>(GetParam());
              ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:76:34: error: use of undeclared identifier 'GetParam'
        lda = ::std::tr1::get<4>(GetParam());
                                 ^
/usr/home/user/clBLAS/src/tests/include/her.h:75:36: error: use of undeclared identifier 'GetParam'
        alpha = ::std::tr1::get<3>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/her.h:76:22: error: no member named 'tr1' in namespace 'std'
        lda = ::std::tr1::get<4>(GetParam());
              ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:76:34: error: use of undeclared identifier 'GetParam'
        lda = ::std::tr1::get<4>(GetParam());
                                 ^
/usr/home/user/clBLAS/src/tests/include/her.h:77:23: error: no member named 'tr1' in namespace 'std'
        incx = ::std::tr1::get<5>(GetParam());
               ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:77:23: error: no member named 'tr1' in namespace 'std'
        incx = ::std::tr1::get<5>(GetParam());
               ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:77:35: error: use of undeclared identifier 'GetParam'
        incx = ::std::tr1::get<5>(GetParam());
                                  ^
/usr/home/user/clBLAS/src/tests/include/her.h:78:17: error: no member named 'tr1' in namespace 'std'
                offa = ::std::tr1::get<6>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:77:35: error: use of undeclared identifier 'GetParam'
        incx = ::std::tr1::get<5>(GetParam());
                                  ^
/usr/home/user/clBLAS/src/tests/include/her.h:78:29: error: use of undeclared identifier 'GetParam'
                offa = ::std::tr1::get<6>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:78:17: error: no member named 'tr1' in namespace 'std'
                offa = ::std::tr1::get<6>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:79:17: error: no member named 'tr1' in namespace 'std'
                offx = ::std::tr1::get<7>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:78:29: error: use of undeclared identifier 'GetParam'
                offa = ::std::tr1::get<6>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:79:29: error: use of undeclared identifier 'GetParam'
                offx = ::std::tr1::get<7>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:80:35: error: no member named 'tr1' in namespace 'std'
        numCommandQueues = ::std::tr1::get<8>(GetParam());
                           ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:79:17: error: no member named 'tr1' in namespace 'std'
                offx = ::std::tr1::get<7>(GetParam());
                       ~~~~~~~^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
/usr/home/user/clBLAS/src/tests/include/her.h:79:29: error: use of undeclared identifier 'GetParam'
                offx = ::std::tr1::get<7>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:80:35: error: no member named 'tr1' in namespace 'std'
        numCommandQueues = ::std::tr1::get<8>(GetParam());
                           ~~~~~~~^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
In file included from /usr/home/user/clBLAS/src/tests/functional/func-thread.cpp:21:
In file included from /usr/home/user/clBLAS/src/clBLAS.h:35:
1 warning generated.
[ 73%] Building CXX object tests/CMakeFiles/test-correctness.dir/correctness/corr-gemm.cpp.o
1 warning and 20 errors generated.
--- tests/CMakeFiles/test-functional.dir/functional/func-event.cpp.o ---
*** [tests/CMakeFiles/test-functional.dir/functional/func-event.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/clBLAS/src/build
--- tests/CMakeFiles/test-short.dir/all ---
*** [tests/CMakeFiles/test-short.dir/all] Error code 6

make[1]: stopped in /usr/home/user/clBLAS/src/build
--- tests/CMakeFiles/test-medium.dir/all ---
*** [tests/CMakeFiles/test-medium.dir/all] Error code 6

make[1]: stopped in /usr/home/user/clBLAS/src/build
--- tests/CMakeFiles/test-correctness.dir/all ---
*** [tests/CMakeFiles/test-correctness.dir/all] Error code 6

make[1]: stopped in /usr/home/user/clBLAS/src/build
1 warning and 20 errors generated.
In file included from /usr/local/include/CL/cl.h:20:
--- tests/CMakeFiles/test-functional.dir/functional/func-queue.cpp.o ---
*** [tests/CMakeFiles/test-functional.dir/functional/func-queue.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/clBLAS/src/build
/usr/local/include/CL/cl_version.h:22:9: warning: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0) [-W#pragma-messages]
#pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
        ^
1 warning and 20 errors generated.
--- tests/CMakeFiles/test-functional.dir/functional/func-error.cpp.o ---
*** [tests/CMakeFiles/test-functional.dir/functional/func-error.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/clBLAS/src/build
In file included from /usr/home/user/clBLAS/src/tests/functional/func-thread.cpp:30:
/usr/home/user/clBLAS/src/tests/include/symv.h:33:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:34:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,     // order
        ^
/usr/home/user/clBLAS/src/tests/include/symv.h:73:24: error: no member named 'tr1' in namespace 'std'
        order = ::std::tr1::get<0>(GetParam());
                ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:73:36: error: use of undeclared identifier 'GetParam'
        order = ::std::tr1::get<0>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/symv.h:74:23: error: no member named 'tr1' in namespace 'std'
        uplo = ::std::tr1::get<1>(GetParam());
               ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:74:35: error: use of undeclared identifier 'GetParam'
        uplo = ::std::tr1::get<1>(GetParam());
                                  ^
/usr/home/user/clBLAS/src/tests/include/symv.h:75:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:75:32: error: use of undeclared identifier 'GetParam'
        N = ::std::tr1::get<2>(GetParam());
                               ^
/usr/home/user/clBLAS/src/tests/include/symv.h:76:24: error: no member named 'tr1' in namespace 'std'
        extra = ::std::tr1::get<3>(GetParam());
                ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:76:36: error: use of undeclared identifier 'GetParam'
        extra = ::std::tr1::get<3>(GetParam());
                                   ^
/usr/home/user/clBLAS/src/tests/include/symv.h:81:35: error: no member named 'tr1' in namespace 'std'
        numCommandQueues = ::std::tr1::get<4>(GetParam());
                           ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/symv.h:81:47: error: use of undeclared identifier 'GetParam'
        numCommandQueues = ::std::tr1::get<4>(GetParam());
                                              ^
In file included from /usr/home/user/clBLAS/src/tests/functional/func-thread.cpp:31:
In file included from /usr/home/user/clBLAS/src/tests/functional/func.h:68:
/usr/home/user/clBLAS/src/tests/include/her.h:44:12: error: no member named 'tr1' in namespace 'std'
    ::std::tr1::tuple<
    ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:45:9: error: unexpected type name 'clblasOrder': expected expression
        clblasOrder,    // order
        ^
/usr/home/user/clBLAS/src/tests/include/her.h:72:18: error: no member named 'tr1' in namespace 'std'
                order = ::std::tr1::get<0>(GetParam());
                        ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:72:30: error: use of undeclared identifier 'GetParam'
                order = ::std::tr1::get<0>(GetParam());
                                           ^
/usr/home/user/clBLAS/src/tests/include/her.h:73:17: error: no member named 'tr1' in namespace 'std'
                uplo = ::std::tr1::get<1>(GetParam());
                       ~~~~~~~^
/usr/home/user/clBLAS/src/tests/include/her.h:73:29: error: use of undeclared identifier 'GetParam'
                uplo = ::std::tr1::get<1>(GetParam());
                                          ^
/usr/home/user/clBLAS/src/tests/include/her.h:74:20: error: no member named 'tr1' in namespace 'std'
        N = ::std::tr1::get<2>(GetParam());
            ~~~~~~~^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
1 warning and 20 errors generated.
--- tests/CMakeFiles/test-functional.dir/functional/func-thread.cpp.o ---
*** [tests/CMakeFiles/test-functional.dir/functional/func-thread.cpp.o] Error code 1

make[2]: stopped in /usr/home/user/clBLAS/src/build
4 errors

make[2]: stopped in /usr/home/user/clBLAS/src/build
--- tests/CMakeFiles/test-functional.dir/all ---
*** [tests/CMakeFiles/test-functional.dir/all] Error code 2

make[1]: stopped in /usr/home/user/clBLAS/src/build
4 errors

make[1]: stopped in /usr/home/user/clBLAS/src/build
*** [all] Error code 2

make: stopped in /usr/home/user/clBLAS/src/build
1 error

make: stopped in /usr/home/user/clBLAS/src/build
Thanks

—
Reply to this email directly, view it on GitHub <https://github.com/sowson/darknet/issues/79#issuecomment-1274285252>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AIC6NQDVQAYCEKL5YQQWRW3WCUPBLANCNFSM6AAAAAAQ7IPBXA>.
You are receiving this because you commented.
rajhlinux commented 1 year ago

Thank You.

I have installed clBlast:

$ pkg install clblast

Information about clblast:

$ pkg info clblast:

clblast-1.1.0_3
Name           : clblast
Version        : 1.1.0_3
Installed on   : Fri Sep 23 03:21:05 2022 EDT
Origin         : math/clblast
Architecture   : FreeBSD:13:amd64
Prefix         : /usr/local
Categories     : math
Licenses       : APACHE20
Maintainer     : jmd@FreeBSD.org
WWW            : https://github.com/CNugteren/CLBlast
Comment        : Modern, lightweight, performant and tunable OpenCL BLAS library
Shared Libs required:
        libstdc++.so.6
        libgcc_s.so.1
        libOpenCL.so.1
Shared Libs provided:
        libclblast.so
Annotations    :
        FreeBSD_version: 1301000
        repo_type      : binary
        repository     : FreeBSD
Flat size      : 2.57MiB
Description    :
Modern, lightweight, performant and tunable OpenCL BLAS library. Tuned for
Intel, AMD, and NVIDIA accelerators.

WWW: https://github.com/CNugteren/CLBlast

Files installed to the system path for clblast:

$ pkg info -lx clblast:

clblast-1.1.0_3:
        /usr/local/include/clblast.h
        /usr/local/include/clblast_c.h
        /usr/local/include/clblast_half.h
        /usr/local/lib/cmake/CLBLast/CLBlastConfig-release.cmake
        /usr/local/lib/cmake/CLBLast/CLBlastConfig.cmake
        /usr/local/lib/libclblast.so
        /usr/local/libdata/pkgconfig/clblast.pc
        /usr/local/share/licenses/clblast-1.1.0_3/APACHE20
        /usr/local/share/licenses/clblast-1.1.0_3/LICENSE
        /usr/local/share/licenses/clblast-1.1.0_3/catalog.mk

I encountered an error when doing a cmake for a new darknet repo applied with CLBlast patch and FreeBSD patch:

$ git clone https://github.com/sowson/darknet
$ cd darknet
$ git apply patches/clblast.patch

I then apply FreeBSD patch

Then continued to build darknet:

$ mkdir build && cd build
$ cmake ..

cmake threw an error:

-- FreeBSD
CMake Error at CMakeLists.txt:156 (find_package):
  By not providing "Findclblast.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "clblast", but
  CMake did not find one.

  Could not find a package configuration file provided by "clblast" with any
  of the following names:

    clblastConfig.cmake
    clblast-config.cmake

  Add the installation prefix of "clblast" to CMAKE_PREFIX_PATH or set
  "clblast_DIR" to a directory containing one of the above files.  If
  "clblast" provides a separate development package or SDK, be sure it has
  been installed.

-- Configuring incomplete, errors occurred!
See also "/home/user/darknet/build/CMakeFiles/CMakeOutput.log".

So I did many implementations to solve the issue, and none worked:

$ export CMAKE_PREFIX_PATH=/usr/local/lib/cmake/CLBLast/

On CmakeList.txt:

            #set(clblast_DIR /usr/local/lib/cmake/CLBLast/)
            #set(clblast_CONFIG_DIR "${installedPrefix}/usr/local/lib/cmake/CLBLast/")
            #set($ENV{CMAKE_PREFIX_PATH}=/usr/local/lib/)
            #set({CMAKE_PREFIX_PATH}=/usr/local/lib/)
            #set(CMAKE_MODULE_PATH /usr/local/lib/)

I then took a closer look and realized that FreeBSD distro for CLBlast has different filename for the config.cmake which cmake expects.

So I did a symbolic link (it did not work):

$ ln -s /usr/local/lib/cmake/CLBLast/CLBlastConfig.cmake clblastConfig.cmake
$ ln /usr/local/lib/cmake/CLBLast/CLBlastConfig.cmake clblastConfig.cmake

So I renamed the file, logged in as root and did the following:

$ su
$ cd /usr/local/lib/cmake/CLBLast
$ mv CLBlastConfig.cmake clblastConfig.cmake
$ exit

Then did again: cmake ..

It was able to configure and generate:

-- The C compiler identification is Clang 13.0.0
-- The CXX compiler identification is Clang 13.0.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/clang - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/clang++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- FreeBSD
-- Looking for CL_VERSION_3_0
-- Looking for CL_VERSION_3_0 - found
-- Found OpenCL: /usr/local/lib/libOpenCL.so (found version "3.0") 
-- Found OpenCV: /usr/local (found version "4.6.0") 
-- Configuring done
-- Generating done
-- Build files have been written to: /home/user/darknet/build

I get error during linking stage:

make -j 8:

[100%] Built target darknet_l
[100%] Linking CXX executable darknet
ld: error: undefined symbol: expf
>>> referenced by activations.h:36 (/home/user/darknet/src/activations.h:36)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(activate)
>>> referenced by activations.h:44 (/home/user/darknet/src/activations.h:44)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(activate)
>>> referenced by activations.h:37 (/home/user/darknet/src/activations.h:37)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(activate)
>>> referenced 10 more times

ld: error: undefined symbol: log1pf
>>> referenced by activations.h:56 (/home/user/darknet/src/activations.h:56)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(activate)
>>> referenced by activations.h:56 (/home/user/darknet/src/activations.h:56)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(gradient)

ld: error: undefined symbol: tanhf
>>> referenced by activations.h:64 (/home/user/darknet/src/activations.h:64)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(activate)
>>> referenced by activations.h:79 (/home/user/darknet/src/activations.h:79)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(gradient)

ld: error: undefined symbol: floorf
>>> referenced by activations.h:24 (/home/user/darknet/src/activations.h:24)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(activate)
>>> referenced by activations.h:111 (/home/user/darknet/src/activations.h:111)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(gradient)
>>> referenced by image.c:0 (/home/user/darknet/src/image.c:0)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(place_image)
>>> referenced 7 more times

ld: error: undefined symbol: floor
>>> referenced by activations.h:25 (/home/user/darknet/src/activations.h:25)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(activate)
>>> referenced by activations.h:26 (/home/user/darknet/src/activations.h:26)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(activate)
>>> referenced by image.c:21 (/home/user/darknet/src/image.c:21)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(get_color)
>>> referenced 6 more times

ld: error: undefined symbol: expm1f
>>> referenced by activations.h:78 (/home/user/darknet/src/activations.h:78)
>>>               CMakeFiles/darknet.dir/src/activations.c.o:(gradient)

ld: error: undefined symbol: pow
>>> referenced by batchnorm_layer.c:118 (/home/user/darknet/src/batchnorm_layer.c:118)
>>>               CMakeFiles/darknet.dir/src/batchnorm_layer.c.o:(backward_batchnorm_layer)
>>> referenced by batchnorm_layer.c:118 (/home/user/darknet/src/batchnorm_layer.c:118)
>>>               CMakeFiles/darknet.dir/src/batchnorm_layer.c.o:(backward_batchnorm_layer)
>>> referenced by batchnorm_layer.c:118 (/home/user/darknet/src/batchnorm_layer.c:118)
>>>               CMakeFiles/darknet.dir/src/batchnorm_layer.c.o:(backward_batchnorm_layer)
>>> referenced 85 more times

ld: error: undefined symbol: log
>>> referenced by blas.c:279 (/home/user/darknet/src/blas.c:279)
>>>               CMakeFiles/darknet.dir/src/blas.c.o:(softmax_x_ent_cpu)
>>> referenced by blas.c:290 (/home/user/darknet/src/blas.c:290)
>>>               CMakeFiles/darknet.dir/src/blas.c.o:(logistic_x_ent_cpu)
>>> referenced by blas.c:290 (/home/user/darknet/src/blas.c:290)
>>>               CMakeFiles/darknet.dir/src/blas.c.o:(logistic_x_ent_cpu)
>>> referenced 26 more times

ld: error: undefined symbol: exp
>>> referenced by blas.c:322 (/home/user/darknet/src/blas.c:322)
>>>               CMakeFiles/darknet.dir/src/blas.c.o:(softmax)
>>> referenced by blas.c:322 (/home/user/darknet/src/blas.c:322)
>>>               CMakeFiles/darknet.dir/src/blas.c.o:(softmax_cpu)
>>> referenced by network.c:110 (/home/user/darknet/src/network.c:110)
>>>               CMakeFiles/darknet.dir/src/network.c.o:(get_current_rate)
>>> referenced 40 more times

ld: error: undefined symbol: atan
>>> referenced by box.c:324 (/home/user/darknet/src/box.c:324)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(box_ciou)
>>> referenced by box.c:324 (/home/user/darknet/src/box.c:324)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(box_ciou)
>>> referenced by box.c:508 (/home/user/darknet/src/box.c:508)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(dx_box_iou)
>>> referenced 5 more times

ld: error: undefined symbol: log2
>>> referenced by box.c:807 (/home/user/darknet/src/box.c:807)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(encode_box)
>>> referenced by box.c:807 (/home/user/darknet/src/box.c:807)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(encode_box)
>>> referenced by box.c:1709 (/home/user/darknet/src/box.c:1709)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(encode_box_y4)
>>> referenced 1 more times

ld: error: undefined symbol: exp2
>>> referenced by box.c:817 (/home/user/darknet/src/box.c:817)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(decode_box)
>>> referenced by box.c:817 (/home/user/darknet/src/box.c:817)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(decode_box)
>>> referenced by box.c:1719 (/home/user/darknet/src/box.c:1719)
>>>               CMakeFiles/darknet.dir/src/box.c.o:(decode_box_y4)
>>> referenced 5 more times

ld: error: undefined symbol: ceil
>>> referenced by image.c:22 (/home/user/darknet/src/image.c:22)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(get_color)
>>> referenced by image.c:22 (/home/user/darknet/src/image.c:22)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(mask_to_rgb)
>>> referenced by image.c:22 (/home/user/darknet/src/image.c:22)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(draw_detections_v3)
>>> referenced 3 more times

ld: error: undefined symbol: roundf
>>> referenced by image.c:392 (/home/user/darknet/src/image.c:392)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(draw_detections_v3)
>>> referenced by image.c:393 (/home/user/darknet/src/image.c:393)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(draw_detections_v3)
>>> referenced by image.c:394 (/home/user/darknet/src/image.c:394)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(draw_detections_v3)
>>> referenced 5 more times

ld: error: undefined symbol: cos
>>> referenced by image.c:0 (/home/user/darknet/src/image.c:0)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(rotate_crop_image)
>>> referenced by image.c:0 (/home/user/darknet/src/image.c:0)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(rotate_image)
>>> referenced by network.c:122 (/home/user/darknet/src/network.c:122)
>>>               CMakeFiles/darknet.dir/src/network.c.o:(get_current_rate)
>>> referenced 1 more times

ld: error: undefined symbol: sin
>>> referenced by image.c:0 (/home/user/darknet/src/image.c:0)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(rotate_crop_image)
>>> referenced by image.c:0 (/home/user/darknet/src/image.c:0)
>>>               CMakeFiles/darknet.dir/src/image.c.o:(rotate_image)
>>> referenced by lsd.c:392 (/home/user/darknet/examples/lsd.c:392)
>>>               CMakeFiles/darknet.dir/examples/lsd.c.o:(slerp)
>>> referenced 6 more times

ld: error: undefined symbol: acos
>>> referenced by lsd.c:391 (/home/user/darknet/examples/lsd.c:391)
>>>               CMakeFiles/darknet.dir/examples/lsd.c.o:(slerp)
>>> referenced by lsd.c:391 (/home/user/darknet/examples/lsd.c:391)
>>>               CMakeFiles/darknet.dir/examples/lsd.c.o:(inter_dcgan)

ld: error: undefined symbol: nan
>>> referenced by utils.c:615 (/home/user/darknet/src/utils.c:615)
>>>               CMakeFiles/darknet.dir/src/utils.c.o:(parse_fields)
>>> referenced by utils.c:614 (/home/user/darknet/src/utils.c:614)
>>>               CMakeFiles/darknet.dir/src/utils.c.o:(parse_fields)

ld: error: undefined symbol: operator new(unsigned long)
>>> referenced by image_opencv.cpp:0 (/home/user/darknet/src/image_opencv.cpp:0)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced by new:235 (/usr/include/c++/v1/new:235)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced by new:235 (/usr/include/c++/v1/new:235)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(show_image_frame_cv)
>>> referenced 13 more times

ld: error: undefined symbol: operator delete(void*)
>>> referenced by new:245 (/usr/include/c++/v1/new:245)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced by new:245 (/usr/include/c++/v1/new:245)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced by new:0 (/usr/include/c++/v1/new:0)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced 23 more times

ld: error: too many errors emitted, stopping now (use -error-limit=0 to see all errors)
clang: error: linker command failed with exit code 1 (use -v to see invocation)
--- darknet ---
*** [darknet] Error code 1

make[2]: stopped in /usr/home/user/darknet/build
1 error

make[2]: stopped in /usr/home/user/darknet/build
--- CMakeFiles/darknet.dir/all ---
*** [CMakeFiles/darknet.dir/all] Error code 2

make[1]: stopped in /usr/home/user/darknet/build
1 error

make[1]: stopped in /usr/home/user/darknet/build
*** [all] Error code 2

make: stopped in /usr/home/user/darknet/build
1 error

make: stopped in /usr/home/user/darknet/build

Thank You.

sowson commented 1 year ago

maybe this will help https://forums.freebsd.org/threads/problem-with-math-h.33320/ ;-).

rajhlinux commented 1 year ago

Hello Sowa, Thank You for the reply.

It turns out I needed to place some compiler flags to CamkeList.txt. I first place the flag: -lm which takes care of linking the math.h symbols:

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -lm")

Did a cmake .. and make -j 8 again:

[100%] Linking CXX static library libdarknet_s.a
[100%] Linking CXX shared library libdarknet_l.so
[100%] Built target darknet_s
[100%] Built target darknet_l
[100%] Linking CXX executable darknet
ld: error: undefined symbol: operator new(unsigned long)
>>> referenced by image_opencv.cpp:0 (/home/user/darknet/src/image_opencv.cpp:0)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced by new:235 (/usr/include/c++/v1/new:235)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced by new:235 (/usr/include/c++/v1/new:235)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(show_image_frame_cv)
>>> referenced 13 more times

ld: error: undefined symbol: operator delete(void*)
>>> referenced by new:245 (/usr/include/c++/v1/new:245)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced by new:245 (/usr/include/c++/v1/new:245)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced by new:0 (/usr/include/c++/v1/new:0)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(open_video_stream)
>>> referenced 23 more times

ld: error: undefined symbol: __cxa_begin_catch
>>> referenced by image_opencv.cpp:371 (/home/user/darknet/src/image_opencv.cpp:371)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(is_invalid_file_to_imread_cv)
>>> referenced by image_opencv.cpp:396 (/home/user/darknet/src/image_opencv.cpp:396)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(load_image_cv)

ld: error: undefined symbol: __cxa_end_catch
>>> referenced by image_opencv.cpp:374 (/home/user/darknet/src/image_opencv.cpp:374)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(is_invalid_file_to_imread_cv)
>>> referenced by image_opencv.cpp:397 (/home/user/darknet/src/image_opencv.cpp:397)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(load_image_cv)

ld: error: undefined symbol: std::__1::__basic_string_common<true>::__throw_length_error() const
>>> referenced by string:1721 (/usr/include/c++/v1/string:1721)
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::__throw_length_error() const)

ld: error: undefined symbol: __gxx_personality_v0
>>> referenced by image_opencv.cpp
>>>               CMakeFiles/darknet.dir/src/image_opencv.cpp.o:(.eh_frame+0x413)
clang: error: linker command failed with exit code 1 (use -v to see invocation)
--- darknet ---
*** [darknet] Error code 1

make[2]: stopped in /usr/home/user/darknet/build
1 error

All of the .C file related compilation errors are gone.

The remaining errors seems to be based on C++ image_opencv.cpp file. Did a google on it and I assume that the compiler is confused on which C++ version to use: https://stackoverflow.com/questions/27390078/gcc-compiling-c-code-undefined-reference-to-operator-newunsigned-long-lon

I then added the flag -lstdc++ to the CmakeList.txt:

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -lstdc++ -pthread -lm")

Did a cmake .. and make -j 8 again:

Everything have been compiled and built with no errors:

[ 99%] Linking CXX executable darknet
[ 99%] Linking CXX shared library libdarknet_l.so
[ 99%] Built target darknet
[ 99%] Built target darknet_l
[100%] Linking CXX static library libdarknet_s.a
[100%] Built target darknet_s

user@user:~/darknet/build $ 

Will test and see what works.

Thanks.

rajhlinux commented 1 year ago

Success detection works: :tada:

darknet_opencl_b

darknet_opencl_3

I will create a patch and you can verify.

Thank You very much for your great contribution in providing machine vision in proper OpenCL from scratch helping many with AMD GPU users. Also Thank You for being super patient in helping me.

rajhlinux commented 1 year ago

Wow this is super fast :dash: :1234: :open_mouth:

Predicted in 0.346 milliseconds:

$ ./darknet detect /usr/home/user/darknet/cfg/coco.data /usr/home/user/darknet/cfg/yolov3.cfg /usr/home/user/darknet/weights/yolov3.weights

Enter Image Path: data/main.jpg

darknet_opencl_people

The fastest I can obtain before for the same image with 100% accuracy took 14 seconds using "libfacedetection" (C/C++) and 5 seconds using "dlib" (C/C++) and 14 seconds using "OpenPose" (C/C++). No more CPU days ever again :relaxed:

Here is the FeeBSD patch: FreeBSD.zip

Would like to note that the patch I used is somewhat different than your FreeBSD patch. I did not edit the "system.h" files and did not include #ifdefined(__unix__) to it's own scope block in "system.c" file and added defined(__unix__) with apple.

How can I do detection of a live webcam or a video file?

Thank You.

sowson commented 1 year ago

Congrats! you did the whole work. I only gave you some ideas... so all thanks to you. Here you have examples got from .idea/workspace.xml file in this repo... commands.txt Enjoy!

rajhlinux commented 1 year ago

Thank You.