MIPI_Camera icon indicating copy to clipboard operation
MIPI_Camera copied to clipboard

Raspberry Pi Bullseye OS.

Open Qengineering opened this issue 4 years ago • 1 comments

Note, in Raspberry Pi Debian 11 Bullseye Python2 is deprecated. Most Python2 elements have already been removed from this distro. In your installation guide you have several references to Python2. Most can be simply ignored by not installing. The $make install requires opencv.pc. This can be generated by the symbolic link sudo ln -s /usr/local/lib/pkgconfig/opencv4.pc /usr/local/lib/pkgconfig/opencv.pc

Qengineering avatar Nov 10 '21 14:11 Qengineering

It's probably better to change

OPENCV_LIB = $(shell pkg-config --cflags --libs opencv)  
ifeq ($(OPENCV_LIB), )  
OPENCV_LIB = $(shell pkg-config --cflags --libs opencv4)  
endif

to

OPENCV_LIB = $(shell pkg-config --cflags --libs opencv4)

in Makefile (e.g. with nano Makefile)

Renslmf23 avatar Feb 23 '22 12:02 Renslmf23