How can i handle “list index out of range” error when no face found in image for Face and emotion...











up vote
-2
down vote

favorite












I am using Microsoft cognitive services for face and emotion Recognition using API.
Now when i run my code camera started capturing and sending image for processing and when face found in the image it gives output as an array and if no face is found in the image, the code gives the error and it will stop code execution how to handle this error in code.i want when no face found in image it bypass the image and go for another image



code:



while(True):

ret,img=cam.read()
faces=faceDetect.detectMultiScale(img,1.3,5)

for(x,y,w,h) in faces:
sampleNumber=sampleNumber+1
cv2.rectangle(img,(x,y),(x+w,y+h),(0,255,0),3)
cv2.waitKey(10)

success, img_data = cv2.imencode('.jpg', img)
img_data = img_data.tobytes()


result = a[0]['faceId']
r = requests.post(api_url,
params=params,
headers=header,
data=img_data)
try:
conn =httplib.HTTPSConnection('centralindia.api.cognitive.microsoft.com')
conn.request("POST", "/face/v1.0/identify?%s" % params1, str(body), header1)
response = conn.getresponse()
data = response.read()
responseObject = json.loads(data)
print(data)
print(responseObject)
x = responseObject[0]['candidates'][0]['personId']
#x is the personId
print (x)
print [str(x)]
if x=="3a2861ff-5b0c-4056-9c6c-f917e0523342":
name="AKASH DIXIT"
print("AKASH DIXIT")
cv2.putText(img, name, (10, 120), font, 1, (0, 0, 255), 2, cv2.LINE_AA)
cv2.putText(img, c, (10, 180), font, 1, (0, 0, 255), 2, cv2.LINE_AA)
cv2.imshow("Face", img)
conn.close()
except Exception as e:
print(e)

IndexError: list index out of range


Here is the image of the error










share|improve this question
























  • You can use try and except
    – omri_saadon
    Nov 22 at 7:44






  • 1




    Clearly, a is an empty list (or array, or tuple - we cannot tell because you never showed us your code). Please read about how to ask and edit your question.
    – DYZ
    Nov 22 at 7:45












  • the code is updated please have a look
    – Akash Dixit
    Nov 22 at 7:52










  • where did you declare "a"?
    – yapws87
    Nov 22 at 12:01












  • You should add if len(responseObject)>0:. Though, in all honesty, you should consider skipping the call to the Face API if OpenCV didn't detect a face.
    – cthrash
    Nov 22 at 17:50















up vote
-2
down vote

favorite












I am using Microsoft cognitive services for face and emotion Recognition using API.
Now when i run my code camera started capturing and sending image for processing and when face found in the image it gives output as an array and if no face is found in the image, the code gives the error and it will stop code execution how to handle this error in code.i want when no face found in image it bypass the image and go for another image



code:



while(True):

ret,img=cam.read()
faces=faceDetect.detectMultiScale(img,1.3,5)

for(x,y,w,h) in faces:
sampleNumber=sampleNumber+1
cv2.rectangle(img,(x,y),(x+w,y+h),(0,255,0),3)
cv2.waitKey(10)

success, img_data = cv2.imencode('.jpg', img)
img_data = img_data.tobytes()


result = a[0]['faceId']
r = requests.post(api_url,
params=params,
headers=header,
data=img_data)
try:
conn =httplib.HTTPSConnection('centralindia.api.cognitive.microsoft.com')
conn.request("POST", "/face/v1.0/identify?%s" % params1, str(body), header1)
response = conn.getresponse()
data = response.read()
responseObject = json.loads(data)
print(data)
print(responseObject)
x = responseObject[0]['candidates'][0]['personId']
#x is the personId
print (x)
print [str(x)]
if x=="3a2861ff-5b0c-4056-9c6c-f917e0523342":
name="AKASH DIXIT"
print("AKASH DIXIT")
cv2.putText(img, name, (10, 120), font, 1, (0, 0, 255), 2, cv2.LINE_AA)
cv2.putText(img, c, (10, 180), font, 1, (0, 0, 255), 2, cv2.LINE_AA)
cv2.imshow("Face", img)
conn.close()
except Exception as e:
print(e)

IndexError: list index out of range


Here is the image of the error










share|improve this question
























  • You can use try and except
    – omri_saadon
    Nov 22 at 7:44






  • 1




    Clearly, a is an empty list (or array, or tuple - we cannot tell because you never showed us your code). Please read about how to ask and edit your question.
    – DYZ
    Nov 22 at 7:45












  • the code is updated please have a look
    – Akash Dixit
    Nov 22 at 7:52










  • where did you declare "a"?
    – yapws87
    Nov 22 at 12:01












  • You should add if len(responseObject)>0:. Though, in all honesty, you should consider skipping the call to the Face API if OpenCV didn't detect a face.
    – cthrash
    Nov 22 at 17:50













up vote
-2
down vote

favorite









up vote
-2
down vote

favorite











I am using Microsoft cognitive services for face and emotion Recognition using API.
Now when i run my code camera started capturing and sending image for processing and when face found in the image it gives output as an array and if no face is found in the image, the code gives the error and it will stop code execution how to handle this error in code.i want when no face found in image it bypass the image and go for another image



code:



while(True):

ret,img=cam.read()
faces=faceDetect.detectMultiScale(img,1.3,5)

for(x,y,w,h) in faces:
sampleNumber=sampleNumber+1
cv2.rectangle(img,(x,y),(x+w,y+h),(0,255,0),3)
cv2.waitKey(10)

success, img_data = cv2.imencode('.jpg', img)
img_data = img_data.tobytes()


result = a[0]['faceId']
r = requests.post(api_url,
params=params,
headers=header,
data=img_data)
try:
conn =httplib.HTTPSConnection('centralindia.api.cognitive.microsoft.com')
conn.request("POST", "/face/v1.0/identify?%s" % params1, str(body), header1)
response = conn.getresponse()
data = response.read()
responseObject = json.loads(data)
print(data)
print(responseObject)
x = responseObject[0]['candidates'][0]['personId']
#x is the personId
print (x)
print [str(x)]
if x=="3a2861ff-5b0c-4056-9c6c-f917e0523342":
name="AKASH DIXIT"
print("AKASH DIXIT")
cv2.putText(img, name, (10, 120), font, 1, (0, 0, 255), 2, cv2.LINE_AA)
cv2.putText(img, c, (10, 180), font, 1, (0, 0, 255), 2, cv2.LINE_AA)
cv2.imshow("Face", img)
conn.close()
except Exception as e:
print(e)

IndexError: list index out of range


Here is the image of the error










share|improve this question















I am using Microsoft cognitive services for face and emotion Recognition using API.
Now when i run my code camera started capturing and sending image for processing and when face found in the image it gives output as an array and if no face is found in the image, the code gives the error and it will stop code execution how to handle this error in code.i want when no face found in image it bypass the image and go for another image



code:



while(True):

ret,img=cam.read()
faces=faceDetect.detectMultiScale(img,1.3,5)

for(x,y,w,h) in faces:
sampleNumber=sampleNumber+1
cv2.rectangle(img,(x,y),(x+w,y+h),(0,255,0),3)
cv2.waitKey(10)

success, img_data = cv2.imencode('.jpg', img)
img_data = img_data.tobytes()


result = a[0]['faceId']
r = requests.post(api_url,
params=params,
headers=header,
data=img_data)
try:
conn =httplib.HTTPSConnection('centralindia.api.cognitive.microsoft.com')
conn.request("POST", "/face/v1.0/identify?%s" % params1, str(body), header1)
response = conn.getresponse()
data = response.read()
responseObject = json.loads(data)
print(data)
print(responseObject)
x = responseObject[0]['candidates'][0]['personId']
#x is the personId
print (x)
print [str(x)]
if x=="3a2861ff-5b0c-4056-9c6c-f917e0523342":
name="AKASH DIXIT"
print("AKASH DIXIT")
cv2.putText(img, name, (10, 120), font, 1, (0, 0, 255), 2, cv2.LINE_AA)
cv2.putText(img, c, (10, 180), font, 1, (0, 0, 255), 2, cv2.LINE_AA)
cv2.imshow("Face", img)
conn.close()
except Exception as e:
print(e)

IndexError: list index out of range


Here is the image of the error







python microsoft-cognitive






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 at 16:19









Miki

29.5k852134




29.5k852134










asked Nov 22 at 7:42









Akash Dixit

14




14












  • You can use try and except
    – omri_saadon
    Nov 22 at 7:44






  • 1




    Clearly, a is an empty list (or array, or tuple - we cannot tell because you never showed us your code). Please read about how to ask and edit your question.
    – DYZ
    Nov 22 at 7:45












  • the code is updated please have a look
    – Akash Dixit
    Nov 22 at 7:52










  • where did you declare "a"?
    – yapws87
    Nov 22 at 12:01












  • You should add if len(responseObject)>0:. Though, in all honesty, you should consider skipping the call to the Face API if OpenCV didn't detect a face.
    – cthrash
    Nov 22 at 17:50


















  • You can use try and except
    – omri_saadon
    Nov 22 at 7:44






  • 1




    Clearly, a is an empty list (or array, or tuple - we cannot tell because you never showed us your code). Please read about how to ask and edit your question.
    – DYZ
    Nov 22 at 7:45












  • the code is updated please have a look
    – Akash Dixit
    Nov 22 at 7:52










  • where did you declare "a"?
    – yapws87
    Nov 22 at 12:01












  • You should add if len(responseObject)>0:. Though, in all honesty, you should consider skipping the call to the Face API if OpenCV didn't detect a face.
    – cthrash
    Nov 22 at 17:50
















You can use try and except
– omri_saadon
Nov 22 at 7:44




You can use try and except
– omri_saadon
Nov 22 at 7:44




1




1




Clearly, a is an empty list (or array, or tuple - we cannot tell because you never showed us your code). Please read about how to ask and edit your question.
– DYZ
Nov 22 at 7:45






Clearly, a is an empty list (or array, or tuple - we cannot tell because you never showed us your code). Please read about how to ask and edit your question.
– DYZ
Nov 22 at 7:45














the code is updated please have a look
– Akash Dixit
Nov 22 at 7:52




the code is updated please have a look
– Akash Dixit
Nov 22 at 7:52












where did you declare "a"?
– yapws87
Nov 22 at 12:01






where did you declare "a"?
– yapws87
Nov 22 at 12:01














You should add if len(responseObject)>0:. Though, in all honesty, you should consider skipping the call to the Face API if OpenCV didn't detect a face.
– cthrash
Nov 22 at 17:50




You should add if len(responseObject)>0:. Though, in all honesty, you should consider skipping the call to the Face API if OpenCV didn't detect a face.
– cthrash
Nov 22 at 17:50

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53426049%2fhow-can-i-handle-list-index-out-of-range-error-when-no-face-found-in-image-for%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53426049%2fhow-can-i-handle-list-index-out-of-range-error-when-no-face-found-in-image-for%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks