Re: running .bat file in cygwin

2012-07-12 Thread emon
Can you help me on this: Need urgent help on thread: the goal here is the separtemask will take each image and separate different contours and for each contour in the image it will call handleobject thread. So every for loop will call the handeobject thread. However, object index variable needs t

Re: running .bat file in cygwin

2012-07-11 Thread Earnie Boyd
On Wed, Jul 11, 2012 at 3:33 PM, emon wrote: > > "Note, fork requires the cygwin1.dll file. Are you prepared for that?" > > thanks for your response. What got me notice is the above comment? Would > you please elaborate on that? The only reason I would be going through this > becuase i am work

RE: running .bat file in cygwin

2012-07-11 Thread James Johnston
> -Original Message- > Sent: Wednesday, July 11, 2012 19:34 > Subject: Re: running .bat file in cygwin > > > "Note, fork requires the cygwin1.dll file. Are you prepared for that?" > > thanks for your response. What got me notice is the above commen

Re: running .bat file in cygwin

2012-07-11 Thread emon
"Note, fork requires the cygwin1.dll file. Are you prepared for that?" thanks for your response. What got me notice is the above comment? Would you please elaborate on that? The only reason I would be going through this becuase i am working on parallel processing on my thesis. Currently, in m

Re: running .bat file in cygwin

2012-07-11 Thread Earnie Boyd
On Wed, Jul 11, 2012 at 12:26 PM, emon wrote: > > Dear All, > I am a newbie in cygwin. However, I have used mingw so far, > but it is not supporting fork(), so I need to switch to cygwin. I have > created a build.bat file in my mingw (programming language C): > Note, fork requires

Re: running .bat file in cygwin

2012-07-11 Thread Larry Hall (Cygwin)
On 7/11/2012 1:05 PM, emon wrote: Dear Larry, When I use mingw terminal, build.bat would create a mask.exe. This is the executable file,mask.exe. If I try the same way in cygwin, it provides me the following error. -bash:build.bat command not found. As Greg points out in a subs

Re: running .bat file in cygwin

2012-07-11 Thread emon
Dear Larry, When I use mingw terminal, build.bat would create a mask.exe. This is the executable file,mask.exe. If I try the same way in cygwin, it provides me the following error. -bash:build.bat command not found. By the by, my computer is installed both cygwin and mingw. thank

Re: running .bat file in cygwin

2012-07-11 Thread Greg Chicares
On 2012-07-11 16:26Z, emon wrote: > > Can anyone suggest me how I can run this .bat file at cygwin or refer me to > a site. Since you've decided to start using Cygwin, the best advice is probably to write it as a shell script instead. There are many tutorials on the web. But if you really want t

Re: running .bat file in cygwin

2012-07-11 Thread Larry Hall (Cygwin)
On 7/11/2012 12:26 PM, emon wrote: Dear All, I am a newbie in cygwin. However, I have used mingw so far, but it is not supporting fork(), so I need to switch to cygwin. I have created a build.bat file in my mingw (programming language C): gcc -o mask mask.c -pg -I/c/opencv/buil

RE: running .bat file in cygwin

2012-07-11 Thread Adam Dinwoodie
emon wrote: > I am a newbie in cygwin. However, I have used mingw so far, >but it is not supporting fork(), so I need to switch to cygwin. I have >created a build.bat file in my mingw (programming language C): > >gcc -o mask mask.c -pg -I/c/opencv/build/include -lopencv_core231 >-lo