PyQt: muestra la imagen con una etiqueta

He convertido una matriz numpy en un pixmap para mostrarla en una etiqueta dentro de mi GUI. Cuando ejecuto el programa, la GUI se cierra por algún motivo (sin mensajes de error).

height, width = input_image.shape
bytesPerLine = 3 * width
qImg = QtGui.QImage(input_image.data, width, height, bytesPerLine, QtGui.QImage.Format_RGB888)
pixmap01 = QtGui.QPixmap.fromImage(qImg)
self.pixmap_image = QtGui.QPixmap(pixmap01)
self.ui.label_imageDisplay.setPixmap(self.pixmap_image)
self.ui.label_imageDisplay.setAlignment(QtCore.Qt.AlignCenter)
self.ui.label_imageDisplay.setScaledContents(True)
self.ui.label_imageDisplay.setMinimumSize(1,1)
self.ui.label_imageDisplay.show()

Respuestas a la pregunta(1)

Su respuesta a la pregunta