Is there a way in Java or OpenCv ; preferably Java, that i can have an HSV histogram give RGB image.
I tried exploring JAI but it creates histogram for RGB image.
Thanks
Harshit
So, I plug-in my USB stick, copy a file from the hard drive to the USB stick, and safely remove the USB stick. I then plug out the USB stick.
When I plug the USB stick back into the computer again, the previous contents of the USB stick are all gone. It shows an empty drive.
I am using Windows XP SP 2 with an 8 GB USB stick from Transcend.
So, I plug-in my USB stick, copy a file from the hard drive to the USB stick, and safely remove the USB stick. I then plug out the USB stick.
When I plug the USB stick back into the computer again, the previous contents of the USB stick are all gone. It shows an empty drive.
I am using Windows XP SP 2 with an 8 GB USB stick from Transcend.
I am facing problem with connecting MySql database on the other machine on the same network.
Could not connect to the specified instance. MySql error number 1130 Host 'abc' is not allowed to connect to this MySql server (Pinging ok time 1-3 ms ttl =128)
I have check out the followings:
Tcp/IP enabled
RegEdit under hlocal machine .... parameters…
while executing
cat test.txt | java myfile > test1.txt 2> test2.txt
I am getting error "Ambiguous output redirect."
my java file contains System.out and System.err .
I am in Unix csh environment.
So, I plug-in my USB stick, copy a file from the hard drive to the USB stick, and safely remove the USB stick. I then plug out the USB stick.
When I plug the USB stick back into the computer again, the previous contents of the USB stick are all gone. It shows an empty drive.
I am using Windows XP SP 2 with an 8 GB USB stick from Transcend.
Hi
I already have experience in developing websites using java technologies ...
Now i have a task to develop another website and i have the liberty to select technology to built.
I dont want to built using Java/J2ee standard technology as i want to learn new language.
The specification about website i can give is that:
1) its a real estate…
I'm currently a software engineer in India and have been working for 3,5 years. Before recession started I decided to study further and planned for a Master of Science degree in computer science in Fall09, since I want to explore more of this field. I have got an admission in Univ of Texas @ Dallas.
I am confused about whether I should go for…
There are many inbulit functions like int(octal) which can be used to convert octal numbers into decimal numbers on command line but these doesn't work out in script .
int(0671) returns 0671 in script, where as it represent decimal form of octal number on python command line.
Help???
Thank You
import urllib
import xml.etree.ElementTree as ET
def getWeather(city):
#create google weather api url
url = "http://www.google.com/ig/api?weather=" + urllib.quote(city)
try:
# open google weather api url
f = urllib.urlopen(url)
except:
# if there was an error opening the url, return
return…
Hi,
I was doing my academic project and while building and testing i have put many println() statements.
But when I had to submit all prints should not be displayed.
Can i implement something like listener which will be invoked when System.out is tried to be executed and prevents it from displaying.
I dont know how feasible this idea…
I am using google site to retrieve weather information , I want to find values between XML tags. Following code give me weather condition of a city , but I am unable to obtain other parameters such as temperature and if possible explain working of split function implied in the code:
import urllib
def getWeather(city):
#create…
I wanted to make my own encryption algorithm and decryption algorithm , encryption algorithm works fine and converts ascii value of the characters into alternate hexadecimal and octal representations. But when I tried decryption, problem occured as it return int('0671') = 671, as 0671 is string type in the following code. Is there a…