OSOYOO V3 High Resolution 12MegaPixel (4608 x 2592) Camera uses Sony IMX708 module and is fully compatible with Official Raspberry Pi Module 3 Camera.

Configuration:
In order to make the V3 Camera working in Raspberry, we need to change the system config file.
Please run following command in Raspberry Pi terminal:

sudo nano /boot/firmware/config.txt

Above command will open a nano editor, please use Ctrl W command to find the following line:

camera-auto-detect=1

then change the value 1 to 0 and make above line as following:

camera-auto-detect=0
Then we need to add following line to the bottom of the config.txt file:
dtoverlay=imx705

Press Ctrl X and save above change.

Now you can restart the Raspberry Pi board and run following command to test OSOYOO v3 camera:

libcamera-still -o test.jpg

After running above command, you will see the camera capture a picture and save it to test.jpg file.
It will also show the resolution of the picture is 4608 x 2592