Bro you have my respect... jab bhi kisi indian ko programming tutoprial dete dekhta hu dil khush ho jata hai .. love u bhai
@oundhakar3 жыл бұрын
Awesome, no nonsense and straight to the point. Excellent work.
@CristYaghjian9 ай бұрын
what you have done is great job dude, I appreciate that
@HostDotPromo5 жыл бұрын
This is awesome dude. Would love to see more tuts from you in the future 👍
@kooser64 жыл бұрын
Good tutorial, clear and concise. Thanks.
@akashpb18655 жыл бұрын
Bahut achey bhai !! chamaktey raho ! :)
@pankajt103 жыл бұрын
Aditya ...do yo take projects for development?
@snehitvaddi4 жыл бұрын
*Problem* : *ValueError: not enough values to unpack (expected 3, got 2)* *Solution* : github.com/facebookresearch/maskrcnn-benchmark/issues/339#issuecomment-524189545 Refer to this thread. Give a like over there if your problem solved.😉👍 if your using OpenCV version>=4.0.0 just use two parameters like " contours, hierarchy " not " image,contours, hierarchy "
@Alina-er9vv4 жыл бұрын
cv2, in the recent update has just been returning contours and hierarchy, as shown under: contours,hierarchy = cv2.findContours(edged,cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE)
@JibinPhiliposeDGameR6 жыл бұрын
Any chance we can run this natively on Android?
@mukilan28154 жыл бұрын
no bro
@rockstarkarn33163 жыл бұрын
Yes, anywhere,,, install pydroid3 on ur Android and run this code.
@jamesu64203 жыл бұрын
Kivy?
@AnuranPaul132 жыл бұрын
Can we apply OCR to the output image for text recognition?
@ArjunKocher4 жыл бұрын
The code doesn’t with other images.. only with the test image. Also, the final image wasted grayscaled; but that can be adjusted. Although this doesn’t work with every image.
@astarothdaidalos2 жыл бұрын
@Abruzzi72 жыл бұрын
DAAAA, tu-l in gura de tigan. Bubuie pe recunoastere. Great work man, bou' drecu. Keep the good work!
@marcelmuller91744 жыл бұрын
What does the Mapper.mapp() function? How can I implement it in C#? Please help!
@myprojects-df6ol8 ай бұрын
Is the camera module or webcam you used for the video
@jayc33day5 ай бұрын
it worked perfectly, thank you.
@Alina-er9vv4 жыл бұрын
cv2, in the recent update has just been returning contours and hierarchy, as shown under: contours,hierarchy = cv2.findContours(edged,cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE)
@adityapaithon64994 жыл бұрын
This has been fixed in the code already right? I mean the github code in the description
@gopalsahni13875 жыл бұрын
I am getting exact output image till canny edge detection but not getting scanned image after perspective transformation. What should I do now?
@testylass5 жыл бұрын
I am also face this problem plzzzz help!
@vigneshrajendiran83845 жыл бұрын
@@testylass Use cv2.waitKey() command at the end if you don't get images after using imshow()
@AnchitBhardwaj5 жыл бұрын
Did you solve this issue ?
@devloper_hs5 жыл бұрын
Pycharm not recognising open cv2 as a module... What to do bro
@iamvishu5915 жыл бұрын
install the open cv package ,
@TheFunkiGuy5 жыл бұрын
Pip install opencv-python
@sanjeevkumar-ub4sv4 жыл бұрын
@@iamvishu591 bro can you please tell me where i can find code for it ....i open gitup but i am not familar with it. so i can,t get code from there .........plaese help ...if you can you please give me direct link of code to open ...........thanks in advance
@adityapaithon64994 жыл бұрын
pip install opencv-python should work
@Alina-er9vv4 жыл бұрын
How to fix this? op = cv2.getPerspectiveTransform(approx.pts) AttributeError: 'numpy.ndarray' object has no attribute 'pts'
@mr.crazyunknown70944 жыл бұрын
it is "cv2.getPerspectiveTransform(approx, pts)"....the difference is about . and ,
@mayur30494 жыл бұрын
hey, Aditya brilliant work is done. I just want to ask you after completing scanning if I want to extract that scanned data. how will extract that data ? have you made any video on that?
@adityapaithon64994 жыл бұрын
Yes. Use tesseract OCR
@mayur30494 жыл бұрын
@@adityapaithon6499 have you done any video on that? that'd help me
@vishalnk91894 жыл бұрын
Bro i get an error name 'np' is not defined can anyone help In the line of pts=np.float32([[0, 0]........[0, 800]])
@adityapaithon64994 жыл бұрын
import numpy as np
@vishalnk91894 жыл бұрын
@@adityapaithon6499 bro i tried it finally is came but no image only full brown color
@adityapaithon64994 жыл бұрын
Try changing few parameters and check.. you need to fine tune some values
@vishalnk91894 жыл бұрын
@@adityapaithon6499 Thank u bro now is working perfectly I like all your videos your doing great 👏👏 and again thank u for help
@esooghazy4 жыл бұрын
How were you able to solve it? I'm stuck with it.
@shivasaibonala5 жыл бұрын
Bro i'm getting this error image,contours,hierarchy=cv2.findContours(edged,cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE) #retrieve the contours as a list, with simple apprximation model ValueError: not enough values to unpack (expected 3, got 2) how to solve this
@vipulrastogi41365 жыл бұрын
change to (image,contours,hierarchy -------> contours,hierarchy)
@sahityathota31565 жыл бұрын
Getting module not found error:no module named 'cv2' What should we do
@nhanluong48535 жыл бұрын
@@vipulrastogi4136 Bro. this error after edit contours=sorted(contours,key=cv2.contoursArea,reverse=True) AttributeError: module 'cv2.cv2' has no attribute 'contoursArea' how to fix this.
@vigneshrajendiran83845 жыл бұрын
@@nhanluong4853 If you have not fixed the error, then change it into cv2.contourArea. Remove 's' from the keyword.
@snehitvaddi4 жыл бұрын
github.com/facebookresearch/maskrcnn-benchmark/issues/339#issuecomment-524189545 Refer to this thread. Give a like over there if your problem solved.😉👍 if your using OpenCV version>=4.0.0 just use two parameters like " contours, hierarchy " not " image,contours, hierarchy "
@yb.115 жыл бұрын
Aditya ...very nice video..
@mvanditha074 жыл бұрын
You're Awesome! Thank you sooooooooooo much
@maltehansen35585 жыл бұрын
Please make a video about encoding/decoding text in tkinter
@ramsekargnanasekar93844 жыл бұрын
Im getting “”no module named ‘numpy’ “”” what to do now
@adityapaithon64994 жыл бұрын
Install numpy
@lmaonoidea5 жыл бұрын
I am getting errors like --> unable to import 'cv2' unable to import 'numpy' unable to import 'mapper' please help
@AeroAndZero5 жыл бұрын
you need to download opencv, numpy and mapper by python's pip package manager. goto the folder of the project -> open command line on that location -> type "pip install opencv-python" also do "pip install numpy" and for mapper also download the mapper.py file from github
@vilw47394 жыл бұрын
@@AeroAndZero ty😭💖
@examino96295 жыл бұрын
I m getting an error like Error:(-215:Assertion failed) src. Checkvector(2,cv_32f)==4&& dst. Checkvector(2,cv_32f)==4 in function ' cv:: getperspectiveTransform
@Alina-er9vv4 жыл бұрын
Add this in the mapp function: def mapp(h): h= h.reshape((4,2))
@uddhavtonde61755 жыл бұрын
Great Video. Just wanted to know more about path of the image code. i have provided full path of the image but image prompt will not open without throwing any error. image = cv2.imread("D:/PyCharm/Projects/myScanner/TestPhoto.jpg") Please help ??
@uddhavtonde61755 жыл бұрын
It's work after using below command cv2.waitKey() Thanks
@suyashvashishtha49044 жыл бұрын
@@uddhavtonde6175 thanks buddy
@PythonisLove5 жыл бұрын
Well done bro !
@hritvikgupta80384 жыл бұрын
Bro please tell how to convert it into an apk
@hritvikgupta80384 жыл бұрын
Bro please reply or tell me
@hritvikgupta80384 жыл бұрын
tell me how to convert
@viralnews48904 жыл бұрын
Hey If i wanna contact u for giving u a work for a cam scanner app how to contact you? I hope i get a reply asap
@adityapaithon64994 жыл бұрын
Give the order kind sir, and I shall oblige
@viralnews48904 жыл бұрын
@@adityapaithon6499 how to contact youu .i need how much will the time take and the price for the cam scanner .do u use insta o whatsapp
@adityapaithon64994 жыл бұрын
@@viralnews4890 myspace
@viralnews48904 жыл бұрын
@@adityapaithon6499 can you contact me david_dobrik_unseen brother .sorry for the late reply as i was busy
@DividedStates5 жыл бұрын
Is there something like it in javascript somewhere. I am looking for days.
@adityapaithon64995 жыл бұрын
No. Use PYTHON.
@lmaonoidea5 жыл бұрын
@@adityapaithon6499 hi i need help... I am getting errors like --> unable to import 'cv2' unable to import 'numpy' unable to import 'mapper' please help
@adityapaithon64995 жыл бұрын
@@lmaonoidea pip install opencv-python pip install numpy Mapper.py is a file, download it from GitHub or re-watch the video.
@malte1535 жыл бұрын
Please make more videos.
@akshyarikadas32265 жыл бұрын
Will it work if we write it in terminal??
@adityapaithon64995 жыл бұрын
Write what in terminal?
@akshyarikadas32265 жыл бұрын
The code
@adityapaithon64995 жыл бұрын
Why would you want to do that?
@valigotech6 жыл бұрын
Cool tutorial! But why aren't you using monospaced font for the code?
@HuxVx6 жыл бұрын
What are its advatage? Say while coding?
@adityapaithon64996 жыл бұрын
I'm ashamed now. 😂 I don't always use IDLE so I didn't bother to change it (apart from setting it to dark mode) Edit:Heck IDLE seems to come with default Courier New and I've got no idea when I changed it to something different. @Hulla It's easier to see few punctuation, characters (O&0) and even indentation sometimes.
@HuxVx6 жыл бұрын
@@adityapaithon6499 Plz bear with me Im kinda new to this whole programming world, so i search for the monospaced font in IDLE's configure IDLE option but didn't found it there. So do i have to download it from somewhere or im blind?
@HuxVx6 жыл бұрын
@@adityapaithon6499 Also would like to know your setup for python like what IDE you used or Text editor. If it's not to much to ask.
@adityapaithon64996 жыл бұрын
Hey MonoSpace isn't a name but a category of fonts. Examples of monospaced fonts include Courier, Courier New, Lucida Console, Monaco, Consolas and Inconsolata. And I use Anaconda Distribution with Spyder IDE for data analysis projects and sometimes ATOM too.
@shivamkumraa6 жыл бұрын
Bro Are You A CS student or graduated?
@adityapaithon64996 жыл бұрын
Undergrad
@shivamkumraa6 жыл бұрын
@@adityapaithon6499 Which College and year bro??
@josephstalin94814 жыл бұрын
nice explaniation
@kalonacharjee17296 жыл бұрын
Nice👍
@kaushikipradhan61933 жыл бұрын
op=cv.getPerspectiveTransform(approx,pts) cv2.error:-1: error: (-5: Bad argument) in function 'getPerspectiveTransform' >Overload resolution failed: > - src is not a bumpy array, neither a scalar > - Expected Ptr for argument 'src' What to do ?