Coder Social home page Coder Social logo

Comments (2)

ianbgroves avatar ianbgroves commented on June 1, 2024

Also, I'm deviating from the example by using

import PIL.Image
from matplotlib import pylab as P
def LoadImage(file_path):
  im = PIL.Image.open(file_path).convert('L')

  im = np.asarray(im)
  return im

def ShowImage(im, title='', ax=None):
  if ax is None:
    P.figure()
  P.axis('off')
  P.imshow(im)
  P.title(title)


# Load the image
import cv2
im_orig = LoadImage('/content/drive/MyDrive/9. ML project/August_ML_tests/Data/labeled_data/10_2/10.2_022.jpg')
im = cv2.resize(im_orig,(200,200))
im = np.reshape(im,(-1, 200,200, 1))

# Show the image
ShowImage(im_orig)

predictions = model.predict(im)
prediction_class = np.argmax(predictions[0])


print("Prediction class: " + str(prediction_class)) 

To load and preprocess my image.

from tf-keras-vis.

ianbgroves avatar ianbgroves commented on June 1, 2024

Hi all, in case anyone else has this issue. The follow addition solved my issue:

X = np.reshape(X,(-1, 200,200, 1))

from tensorflow.keras.preprocessing.image import load_img
from tensorflow.keras.applications.vgg16 import preprocess_input

# Image titles
image_titles = ['10.2', '10.2', '10.2']

# Load images and Convert them to a Numpy array
img1 = load_img('/content/drive/MyDrive/9. ML project/August_ML_tests/Data/labeled_data/10_2/10.2_009.jpg', grayscale=True, target_size = (200,200))
img2 = load_img('/content/drive/MyDrive/9. ML project/August_ML_tests/Data/labeled_data/10_2/10.2_009.jpg', grayscale=True, target_size = (200,200))
img3 = load_img('/content/drive/MyDrive/9. ML project/August_ML_tests/Data/labeled_data/10_2/10.2_009.jpg', grayscale=True, target_size= (200,200))
images = np.asarray([np.array(img1), np.array(img2), np.array(img3)])

# Preparing input data for VGG16
X = preprocess_input(images)
X = np.reshape(X,(-1, 200,200, 1))

# Rendering
f, ax = plt.subplots(nrows=1, ncols=3, figsize=(12, 4))
for i, title in enumerate(image_titles):
    ax[i].set_title(title, fontsize=16)
    ax[i].imshow(images[i])
    ax[i].axis('off')
plt.tight_layout()
plt.show()

from tf-keras-vis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.