Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trying to fetch image from axios. #758

Open
pprathameshmore opened this issue Jun 12, 2023 · 0 comments
Open

Trying to fetch image from axios. #758

pprathameshmore opened this issue Jun 12, 2023 · 0 comments

Comments

@pprathameshmore
Copy link

pprathameshmore commented Jun 12, 2023

I am trying to fetch images from Axios as arraybuffer

function getImage() {
  const { data } = await axios.get(url, { responseType: "arraybuffer" });
  return data;
}
const image = await getImage();
const modal = await nsfw.load();
const decodedImage = await tf.node.decodeImage(image);
const predictions = await modal.classify(decodedImage);
decodedImage.dispose();

But this code throws an error.

Error: Expected image (BMP, JPEG, PNG, or GIF), but got unsupported image type

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant