BbenWeb1
BbenWeb1
https://github.com/BbenWeb1/php-opencv extension support windows
I wrote a Canny function
This function is not written I can only help you add it. Can you share the link to the function from the official website?
Hello, this library does not support Class ORB
hello note. When you try the TesseractOCR class, you just have to install Tesseract in the system and make cmake opencv with Tesseract. https://www.webuildinternet.com/2016/06/28/installing-opencv-with-tesseract-text-module-on-ubuntu/
Yes return integer not Float. Because he wrote this line `Scalar scalar = Scalar((int)value1, (int)value2, (int)value3, (int)value4);` line 210 in flie opencv2/core/opencv_type.cc
Convert Line `Scalar scalar = Scalar((int)value1, (int)value2, (int)value3, (int)value4);` To ``` Scalar scalar = Scalar(value1, value2, value3, value4); ``` and Test in Windows 
@ta-tikoma What system are you working on
> > @ta-tikoma What system are you working on > > ubuntu in wsl2 ok test in Ubuntu 22.04 WSL 2 
### instal For Ubuntu Wsl2 ``` apt update && apt install -y wget ``` ``` wget https://raw.githubusercontent.com/php-opencv/php-opencv-packages/master/opencv_4.7.0_amd64.deb && dpkg -i opencv_4.7.0_amd64.deb && rm opencv_4.7.0_amd64.deb ``` ``` apt update && apt...