Re: [BangPypers] python candidates | Bengaluru/Hyderabad

2021-12-15 Thread narayan naik
how to unsubscribe On Tue, Dec 14, 2021 at 4:31 PM Venkat Ramasubrahmanyan < venkat.ramasubrahman...@gmail.com> wrote: > Hello... > > I am looking for 2-3y experienced python candidates for my product > development team. > > Anyone interested, please email me your resume. > _ >

[BangPypers] how to see each line result in python

2015-03-03 Thread narayan naik
hi, i have face detection code as import cv2 import sys def detect(path): img = cv2.imread(path) cascade = cv2.CascadeClassifier(/home/nv/haarcascade_frontalface_alt.xml) rects = cascade.detectMultiScale(img, 1.3, 4, cv2.cv.CV_HAAR_SCALE_IMAGE, (20,20)) if len(rects) == 0:

[BangPypers] face detection

2015-01-01 Thread narayan naik
hi, have any one worked with face detection project. ___ BangPypers mailing list BangPypers@python.org https://mail.python.org/mailman/listinfo/bangpypers

[BangPypers] about integral image

2014-12-16 Thread narayan naik
Hi, is there any function that converts an image into an integral imageI ___ BangPypers mailing list BangPypers@python.org https://mail.python.org/mailman/listinfo/bangpypers

[BangPypers] about code

2014-12-14 Thread narayan naik
Hi, import cv2 def detect(path): img = cv2.imread(path) cascade = cv2.CascadeClassifier(haarcascade_frontalface_alt.xml) rects = cascade.detectMultiScale(img, 1.3, 4, cv2.cv.CV_HAAR_SCALE_IMAGE, (20,20)) if len(rects) == 0: return [], img rects[:, 2:] += rects[:, :2]

Re: [BangPypers] about code

2014-12-14 Thread narayan naik
away. But searched on Google for similar topic and found the following link: http://stackoverflow.com/questions/13211745/detect-face-then-autocrop-pictures Hope this helps. On Dec 15, 2014 11:52 AM, narayan naik narayannaik...@gmail.com wrote: Hi, import cv2 def detect(path

Re: [BangPypers] about code

2014-12-14 Thread narayan naik
://stackoverflow.com/questions/13211745/detect-face-then-autocrop-pictures Hope this helps. On Dec 15, 2014 11:52 AM, narayan naik narayannaik...@gmail.com wrote: Hi, import cv2 def detect(path): img = cv2.imread(path) cascade = cv2.CascadeClassifier

[BangPypers] About code

2014-11-25 Thread narayan naik
Hi, import numpy as np import cv2 img=cv2.imread('4.jpg',0) cv2.imshow('image',img) k=cv2.waitKey(0) if k == 27: cv2.destroyAllWindows() #cv2.destroyWindow('image') elif k == ord('S'): cv2.imwrite('image.png',img) cv2.destroyAllWindows() when I run this code,it is not possible to

Re: [BangPypers] about python code

2014-11-23 Thread narayan naik
Thank you all On Fri, Nov 21, 2014 at 12:30 PM, Nikhileshkumar Ikhar nikhil.ik...@gmail.com wrote: Python terminal on linux is sufficient. But many people are fans of ipython and idle. -Nikhil On 20 November 2014 09:48, narayan naik narayannaik...@gmail.com wrote: Ya, am talking

Re: [BangPypers] about python code

2014-11-19 Thread narayan naik
hi, can any one tell,which simulator is best for python On Mon, Nov 17, 2014 at 4:26 PM, narayan naik narayannaik...@gmail.com wrote: hi can you please send me the required terminal package On Mon, Nov 17, 2014 at 2:36 PM, Vikneshwaren vikneshware...@gmail.com wrote: I think your code

Re: [BangPypers] about python code

2014-11-19 Thread narayan naik
Ya, am talking the same On 19 Nov 2014 18:49, Martin Anto info.martina...@gmail.com wrote: Simulator?? You mean interpreter? On Nov 19, 2014 2:48 PM, narayan naik narayannaik...@gmail.com wrote: hi, can any one tell,which simulator is best for python On Mon, Nov 17, 2014 at 4:26

[BangPypers] about python code

2014-11-17 Thread narayan naik
hi, when I am running face detection code ,I am getting this error. Traceback (most recent call last): File /home/nv/read.py, line 2, in module import cv2 ImportError: No module named cv2 please help me. ___ BangPypers mailing list

Re: [BangPypers] about python code

2014-11-17 Thread narayan naik
version you are using, and the operating system? Thanks On Mon, Nov 17, 2014 at 2:30 PM, narayan naik narayannaik...@gmail.com wrote: hi, when I am running face detection code ,I am getting this error. Traceback (most recent call last): File /home/nv/read.py, line 2, in module

Re: [BangPypers] about python code

2014-11-17 Thread narayan naik
when I entered in terminal nv@ubuntu:~$ pkg-config --modversion opencv it shows like 2.3.1 On Mon, Nov 17, 2014 at 2:51 PM, narayan naik narayannaik...@gmail.com wrote: I am using ---Python 2.7.3 (default, Feb 27 2014, 20:00:17) version operating system-ubuntu 12.04 LTS and also I have

Re: [BangPypers] project

2014-09-25 Thread narayan naik
, 2014 at 10:50 AM, narayan naik narayannaik...@gmail.com wrote: Sir,I am doing my M.Tech project on face detection,can u please tell me a simplest face detection algorithm. Thanking you, ___ BangPypers mailing list BangPypers@python.org

[BangPypers] project

2014-09-24 Thread narayan naik
Sir,I am doing my M.Tech project on face detection,can u please tell me a simplest face detection algorithm. Thanking you, ___ BangPypers mailing list BangPypers@python.org https://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Fwd: Issue with basemap import

2014-09-23 Thread narayan naik
hi,anybody help me to learn python.I am beginer On Tue, Sep 23, 2014 at 1:59 PM, Senthil Kumaran sent...@uthcode.com wrote: How did you install your base package? The matplotlib? Are you using any distribution? If you installed it separately., then looks like you will have to install

[BangPypers] face detection

2014-09-22 Thread narayan naik
good evening sir, I am doing my M.Tech project on face detection,but I am confused with the algorithm,can u please tell me a simple and best face detection algorithm. ___ BangPypers mailing list BangPypers@python.org

Re: [BangPypers] face detection

2014-09-22 Thread narayan naik
Thank you sir,I will check now On Mon, Sep 22, 2014 at 6:26 PM, sayantan bhattacharya skb655...@gmail.com wrote: Check haarcascade in open cv On Sep 22, 2014 6:23 PM, narayan naik narayannaik...@gmail.com wrote: good evening sir, I am doing my M.Tech project