Hi,
I have a requirement to calculate the blue colored area in an JPG image. Can anyone suggest me a way to do this please?
References for any libraries or APIs are highly appreciated.
Thanks in advance.
Regards,
Prasath.
Search Result
Collapse
3 results in 0.0041 seconds.
Keywords
Members
Tags
-
David727 started a topic why doesn't the compiler recognize the function although I included the right libs?in Cwhy doesn't the compiler recognize the function although I included the right libs?
this is the code
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void main () {
int b ;
randomize () ;
b = random (61) + 40 ;
printf ("This is b: %d\n", b ) ;
}
These are the errors:
error LNK2019:unresol ved external symbol_random referenced in function_main
error LNK2019:unresol ved external symbol_randomiz e... -
What is the best GUI library?
Hello,
I've been looking at GUI libraries for C / C++ and found several that look like they would work well. I'd like something that will create a cross-platform executable, is free for most purposes, and is easy to use (well documented). I think I've narrowed it down to three primary candidates:
IUP (tecgraf.puc-rio.br)
FOX Toolkit (fox-toolkit.org)
Qt (qt.nokia.com)
I'm just wondering...