BbenWeb1

Results 14 comments of 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 ![IMG_20230429_114857.jpg](https://user-images.githubusercontent.com/124698488/235298820-351c4734-b84c-4edc-9136-a09d78f6cfcf.jpg)

@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 ![Capture_2023_05_02_23_39_39_525](https://user-images.githubusercontent.com/124698488/235790282-8726928a-4d2c-45c1-ae93-bb741b18f20e.png)

### 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...