No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: #include<fstream.h> //Instead of this #include<fstream> // use this. thats all.. you program start working..:-) :-) | |
Re: for(i=0;i<1000;i++) What is the use of this loop.? First clear you logic what you want to do and then start your coding. and 1 tips fom my side that opening file mode instead of "wb+"..use "w". You always start you loop from i=0; why not you decalare a global variable … | |
Re: Convert grayscale to binary. Directly converting color images (like RGB) to binary is not that easy, because you have to handle every color channel within the image seperatly. Converting to binary is done using a ceratin threshold. E.g. you can say, all pixels with gray > 125 will become white, … | |
Re: Post your code.. its better way for us to understand what you say..!!! |
The End.