Reputation: 3
I got an error ,IndexError: list index out of range.
it worked on a other machine but after i transferred it to a other machine it doesn't work anymore.
Python: 3.8.5
tensorflow: 2.3.1
Traceback says:
tensorflow.python.autograph.impl.api.StagingError: in user code:
Load_Model.py:40 detect_fn *
image, shapes = detection_model.preprocess(image)
C:\Users\Tensorflow\tensorflow 2.x\models\research\object_detection\meta_architectures\ssd_meta_arch.py:482 preprocess *
normalized_inputs = self._feature_extractor.preprocess(inputs)
C:\Users\Tensorflow\tensorflow 2.x\models\research\object_detection\models\ssd_resnet_v1_fpn_keras_feature_extractor.py:204 preprocess *
if resized_inputs.shape.as_list()[3] == 3:
IndexError: list index out of range
My code:
import tensorflow as tf
import os
import cv2
from object_detection.utils import label_map_util
from object_detection.utils import config_util
from object_detection.utils import visualization_utils as viz_utils
from object_detection.builders import model_builder
model_name = 'ssd_resnet101_v1_fpn_640x640_coco17_tpu-8'
data_dir = os.path.join(os.getcwd(), 'data')
models_dir = os.path.join(data_dir, 'models')
path_to_ckg = os.path.join(models_dir, os.path.join(model_name, 'pipeline.config'))
PATH_TO_CFG = os.path.join(models_dir)
path_to_cktp = os.path.join(models_dir, os.path.join(model_name, 'checkpoint/'))
label_filename = 'mscoco_label_map.pbtxt'
path_to_labels = os.path.join(models_dir, os.path.join(model_name, label_filename))
tf.get_logger().setLevel('ERROR') # Suppress TensorFlow logging (2)
#Enable GPU dynamic memory allocation
gpus = tf.config.experimental.list_physical_devices('GPU')
for gpu in gpus:
tf.config.experimental.set_memory_growth(gpu, True)
#Load pipeline config and build a detection model'
configs = config_util.get_configs_from_pipeline_file(path_to_ckg)
model_config = configs['model']
detection_model = model_builder.build(model_config=model_config, is_training=False)
#Restore checkpoint
ckpt = tf.compat.v2.train.Checkpoint(model=detection_model)
ckpt.restore(os.path.join(path_to_cktp, 'ckpt-0')).expect_partial()
@tf.function
def detect_fn(image):
"""Detect objects in image."""
image, shapes = detection_model.preprocess(image)
prediction_dict = detection_model.predict(image, shapes)
detections = detection_model.postprocess(prediction_dict, shapes)
return detections, prediction_dict, tf.reshape(shapes, [-1])
category_index = label_map_util.create_category_index_from_labelmap(path_to_labels,
use_display_name=True)
cap = cv2.VideoCapture('rtsp://username:[email protected]:8000/tcp/av0_1')
import numpy as np
while True:
#Read frame from camera
ret, image_np = cap.read()
#Expand dimensions since the model expects images to have shape: [1, None, None, 3]
image_np_expanded = np.expand_dims(image_np, axis=0)
#Things to try:
#Flip horizontally
#image_np = np.fliplr(image_np).copy()
#Convert image to grayscale
#image_np = np.tile(
#np.mean(image_np, 2, keepdims=True), (1, 1, 3)).astype(np.uint8)
input_tensor = tf.convert_to_tensor(np.expand_dims(image_np, 0), dtype=tf.float32)
detections, predictions_dict, shapes = detect_fn(input_tensor)
label_id_offset = 1
image_np_with_detections = image_np.copy()
viz_utils.visualize_boxes_and_labels_on_image_array(
image_np_with_detections,
detections['detection_boxes'][0].numpy(),
(detections['detection_classes'][0].numpy() + label_id_offset).astype(int),
detections['detection_scores'][0].numpy(),
category_index,
use_normalized_coordinates=True,
max_boxes_to_draw=200,
min_score_thresh=.30,
agnostic_mode=False)
#Display output
cv2.imshow('object detection', cv2.resize(image_np_with_detections, (800, 600)))
if cv2.waitKey(25) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
I really cannot understand why such an error happens.
What is wrong in my codes? How should I fix this?
Upvotes: 0
Views: 2261
Reputation: 1
the error youre getting is " if resized_inputs.shape.as_list()[3] == 3:" it says shape of three inputs which are hight,width and RGB color variance
from PIL import Image
def load_image_into_numpy_array(path):
"""Load an image from file into a numpy array.
Puts image into numpy array to feed into tensorflow graph.
Note that by convention we put it into a numpy array with shape
(height, width, channels), where channels=3 for RGB.
Args:
path: the file path to the image
Returns:
uint8 numpy array with shape (img_height, img_width, 3)
"""
return np.array(Image.open(path))
image_np = load_image_into_numpy_array(IMAGE_PATH)
I think this would work
Upvotes: 0
Reputation: 503
Define the detect_fn inside the get_model_detection_function function , something like this :
def get_model_detection_function(model):
"""Get a tf.function for detection."""
@tf.function
def detect_fn(image):
"""Detect objects in image."""
image, shapes = model.preprocess(image)
prediction_dict = model.predict(image, shapes)
detections = model.postprocess(prediction_dict, shapes)
return detections, prediction_dict, tf.reshape(shapes, [-1])
return detect_fn
detect_fn = get_model_detection_function(detection_model)
See if this helps 😊
Upvotes: 3