Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I integrate openCV in reactjs project?

I'm working on a reactjs project for a few months now one module requires some image processing. So, I would like to know how can I integrate openCV with reactjs. I can't find any articles, documentations for the same.

like image 792
aishcript Avatar asked Sep 06 '25 03:09

aishcript


1 Answers

Have you tried to implement TensorFlow models instead of openCV to your ReactJS project?

Try checking out TensorFlow.js(website:https://www.tensorflow.org/js) They have JavaScript compatible CV models. Maybe that's easier to implement than openCV.

I have completed several projects with TensorFlow.js and ReactJS. They work fine together.

like image 191
BigPP Avatar answered Sep 07 '25 20:09

BigPP