Converting png to Tensor tensorflow.js











up vote
0
down vote

favorite












I'm currently attempting to figure out how to convert a input png into a tensor with tensorflow.js so I can feed it into my model for training. Currently I'm capturing the image, saving it locally, reading it with fs.readFileSync, and then creating a buffer. Where i'm a bit lost is normalizing the buffer values from 0-244 to 0-1, then creating a tensor from this buffer to feed into the model.fit function as the X arg. I also don't really know how to set up my labels file and properly convert that into a buffer for the Y arg. (https://js.tensorflow.org/api/0.11.2/#tf.Model.fit) Any insight into the proper usage / configuration of images into tensors for using tensorflow.js would be greatly appreciated.



Repo is here;
https://github.com/Durban-Designer/Fighter-Ai



code for loading local image in data.js;



const tf = require('@tensorflow/tfjs');
const assert = require('assert');
const IMAGE_HEADER_BYTES = 32;
const IMAGE_HEIGHT = 600;
const IMAGE_WIDTH = 800;
const IMAGE_FLAT_SIZE = IMAGE_HEIGHT * IMAGE_WIDTH;

function loadHeaderValues(buffer, headerLength) {
const headerValues = ;
for (let i = 0; i < headerLength / 4; i++) {
headerValues[i] = buffer.readUInt32BE(i * 4);
}
return headerValues;
}

...
...
class Dataset {
async loadLocalImage(filename) {
const buffer = fs.readFileSync(filename);

const headerBytes = IMAGE_HEADER_BYTES;
const recordBytes = IMAGE_HEIGHT * IMAGE_WIDTH;

const headerValues = loadHeaderValues(buffer, headerBytes);
console.log(headerValues, buffer);
assert.equal(headerValues[5], IMAGE_HEIGHT);
assert.equal(headerValues[4], IMAGE_WIDTH);

const images = ;
let index = headerBytes;
while (index < buffer.byteLength) {
const array = new Float32Array(recordBytes);
for (let i = 0; i < recordBytes; i++) {
// Normalize the pixel values into the 0-1 interval, from
// the original 0-255 interval.
array[i] = buffer.readUInt8(index++) / 255;
}
images.push(array);
}

assert.equal(images.length, headerValues[1]);
return images;
}
}
module.exports = new Dataset();


image capture loop in app.js;



const ioHook = require("iohook");
const tf = require('@tensorflow/tfjs');
var screenCap = require('desktop-screenshot');
require('@tensorflow/tfjs-node');
const data = require('./src/data');
const virtKeys = require('./src/virtKeys');
const model = require('./src/model');
var dir = __dirname;
var paused = true;
var loopInterval,
image,
imageData,
result

ioHook.on('keyup', event => {
if (event.keycode === 88) {
if (paused) {
paused = false;
gameLoop();
} else {
paused = true;
}
}
});

ioHook.start();
function gameLoop () {
if (!paused) {
screenCap(dir + '\image.png', {width: 800, height: 600, quality: 60}, function (error, complete) {
if (error) {
console.log(error);
} else {
imageData = await data.getImage(dir + '\image.png')
console.log(imageData);
result = model.predict(imageData, {batchSize: 4});
console.log(result);
gameLoop();
}
})
}
}


I know I use model.predict here, I wanted to get the actual image to tensor part working then figure out labels and model.fit() in train-tensor.js in the repo. I don't have any actual working code for training so I didn't include it in this question, sorry if it caused any confusion.



Thank you again!



Edit final working code



const { Image, createCanvas } = require('canvas');
const canvas = createCanvas(800, 600);
const ctx = canvas.getContext('2d');

async function loadLocalImage (filename) {
try {
var img = new Image()
img.onload = () => ctx.drawImage(img, 0, 0);
img.onerror = err => { throw err };
img.src = filename;
image = tf.fromPixels(canvas);
return image;
} catch (err) {
console.log(err);
}
}
...
...
async getImage(filename) {
try {
this.image = await loadLocalImage(filename);
} catch (error) {
console.log('error loading image', error);
}
return this.image;
}









share|improve this question




























    up vote
    0
    down vote

    favorite












    I'm currently attempting to figure out how to convert a input png into a tensor with tensorflow.js so I can feed it into my model for training. Currently I'm capturing the image, saving it locally, reading it with fs.readFileSync, and then creating a buffer. Where i'm a bit lost is normalizing the buffer values from 0-244 to 0-1, then creating a tensor from this buffer to feed into the model.fit function as the X arg. I also don't really know how to set up my labels file and properly convert that into a buffer for the Y arg. (https://js.tensorflow.org/api/0.11.2/#tf.Model.fit) Any insight into the proper usage / configuration of images into tensors for using tensorflow.js would be greatly appreciated.



    Repo is here;
    https://github.com/Durban-Designer/Fighter-Ai



    code for loading local image in data.js;



    const tf = require('@tensorflow/tfjs');
    const assert = require('assert');
    const IMAGE_HEADER_BYTES = 32;
    const IMAGE_HEIGHT = 600;
    const IMAGE_WIDTH = 800;
    const IMAGE_FLAT_SIZE = IMAGE_HEIGHT * IMAGE_WIDTH;

    function loadHeaderValues(buffer, headerLength) {
    const headerValues = ;
    for (let i = 0; i < headerLength / 4; i++) {
    headerValues[i] = buffer.readUInt32BE(i * 4);
    }
    return headerValues;
    }

    ...
    ...
    class Dataset {
    async loadLocalImage(filename) {
    const buffer = fs.readFileSync(filename);

    const headerBytes = IMAGE_HEADER_BYTES;
    const recordBytes = IMAGE_HEIGHT * IMAGE_WIDTH;

    const headerValues = loadHeaderValues(buffer, headerBytes);
    console.log(headerValues, buffer);
    assert.equal(headerValues[5], IMAGE_HEIGHT);
    assert.equal(headerValues[4], IMAGE_WIDTH);

    const images = ;
    let index = headerBytes;
    while (index < buffer.byteLength) {
    const array = new Float32Array(recordBytes);
    for (let i = 0; i < recordBytes; i++) {
    // Normalize the pixel values into the 0-1 interval, from
    // the original 0-255 interval.
    array[i] = buffer.readUInt8(index++) / 255;
    }
    images.push(array);
    }

    assert.equal(images.length, headerValues[1]);
    return images;
    }
    }
    module.exports = new Dataset();


    image capture loop in app.js;



    const ioHook = require("iohook");
    const tf = require('@tensorflow/tfjs');
    var screenCap = require('desktop-screenshot');
    require('@tensorflow/tfjs-node');
    const data = require('./src/data');
    const virtKeys = require('./src/virtKeys');
    const model = require('./src/model');
    var dir = __dirname;
    var paused = true;
    var loopInterval,
    image,
    imageData,
    result

    ioHook.on('keyup', event => {
    if (event.keycode === 88) {
    if (paused) {
    paused = false;
    gameLoop();
    } else {
    paused = true;
    }
    }
    });

    ioHook.start();
    function gameLoop () {
    if (!paused) {
    screenCap(dir + '\image.png', {width: 800, height: 600, quality: 60}, function (error, complete) {
    if (error) {
    console.log(error);
    } else {
    imageData = await data.getImage(dir + '\image.png')
    console.log(imageData);
    result = model.predict(imageData, {batchSize: 4});
    console.log(result);
    gameLoop();
    }
    })
    }
    }


    I know I use model.predict here, I wanted to get the actual image to tensor part working then figure out labels and model.fit() in train-tensor.js in the repo. I don't have any actual working code for training so I didn't include it in this question, sorry if it caused any confusion.



    Thank you again!



    Edit final working code



    const { Image, createCanvas } = require('canvas');
    const canvas = createCanvas(800, 600);
    const ctx = canvas.getContext('2d');

    async function loadLocalImage (filename) {
    try {
    var img = new Image()
    img.onload = () => ctx.drawImage(img, 0, 0);
    img.onerror = err => { throw err };
    img.src = filename;
    image = tf.fromPixels(canvas);
    return image;
    } catch (err) {
    console.log(err);
    }
    }
    ...
    ...
    async getImage(filename) {
    try {
    this.image = await loadLocalImage(filename);
    } catch (error) {
    console.log('error loading image', error);
    }
    return this.image;
    }









    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm currently attempting to figure out how to convert a input png into a tensor with tensorflow.js so I can feed it into my model for training. Currently I'm capturing the image, saving it locally, reading it with fs.readFileSync, and then creating a buffer. Where i'm a bit lost is normalizing the buffer values from 0-244 to 0-1, then creating a tensor from this buffer to feed into the model.fit function as the X arg. I also don't really know how to set up my labels file and properly convert that into a buffer for the Y arg. (https://js.tensorflow.org/api/0.11.2/#tf.Model.fit) Any insight into the proper usage / configuration of images into tensors for using tensorflow.js would be greatly appreciated.



      Repo is here;
      https://github.com/Durban-Designer/Fighter-Ai



      code for loading local image in data.js;



      const tf = require('@tensorflow/tfjs');
      const assert = require('assert');
      const IMAGE_HEADER_BYTES = 32;
      const IMAGE_HEIGHT = 600;
      const IMAGE_WIDTH = 800;
      const IMAGE_FLAT_SIZE = IMAGE_HEIGHT * IMAGE_WIDTH;

      function loadHeaderValues(buffer, headerLength) {
      const headerValues = ;
      for (let i = 0; i < headerLength / 4; i++) {
      headerValues[i] = buffer.readUInt32BE(i * 4);
      }
      return headerValues;
      }

      ...
      ...
      class Dataset {
      async loadLocalImage(filename) {
      const buffer = fs.readFileSync(filename);

      const headerBytes = IMAGE_HEADER_BYTES;
      const recordBytes = IMAGE_HEIGHT * IMAGE_WIDTH;

      const headerValues = loadHeaderValues(buffer, headerBytes);
      console.log(headerValues, buffer);
      assert.equal(headerValues[5], IMAGE_HEIGHT);
      assert.equal(headerValues[4], IMAGE_WIDTH);

      const images = ;
      let index = headerBytes;
      while (index < buffer.byteLength) {
      const array = new Float32Array(recordBytes);
      for (let i = 0; i < recordBytes; i++) {
      // Normalize the pixel values into the 0-1 interval, from
      // the original 0-255 interval.
      array[i] = buffer.readUInt8(index++) / 255;
      }
      images.push(array);
      }

      assert.equal(images.length, headerValues[1]);
      return images;
      }
      }
      module.exports = new Dataset();


      image capture loop in app.js;



      const ioHook = require("iohook");
      const tf = require('@tensorflow/tfjs');
      var screenCap = require('desktop-screenshot');
      require('@tensorflow/tfjs-node');
      const data = require('./src/data');
      const virtKeys = require('./src/virtKeys');
      const model = require('./src/model');
      var dir = __dirname;
      var paused = true;
      var loopInterval,
      image,
      imageData,
      result

      ioHook.on('keyup', event => {
      if (event.keycode === 88) {
      if (paused) {
      paused = false;
      gameLoop();
      } else {
      paused = true;
      }
      }
      });

      ioHook.start();
      function gameLoop () {
      if (!paused) {
      screenCap(dir + '\image.png', {width: 800, height: 600, quality: 60}, function (error, complete) {
      if (error) {
      console.log(error);
      } else {
      imageData = await data.getImage(dir + '\image.png')
      console.log(imageData);
      result = model.predict(imageData, {batchSize: 4});
      console.log(result);
      gameLoop();
      }
      })
      }
      }


      I know I use model.predict here, I wanted to get the actual image to tensor part working then figure out labels and model.fit() in train-tensor.js in the repo. I don't have any actual working code for training so I didn't include it in this question, sorry if it caused any confusion.



      Thank you again!



      Edit final working code



      const { Image, createCanvas } = require('canvas');
      const canvas = createCanvas(800, 600);
      const ctx = canvas.getContext('2d');

      async function loadLocalImage (filename) {
      try {
      var img = new Image()
      img.onload = () => ctx.drawImage(img, 0, 0);
      img.onerror = err => { throw err };
      img.src = filename;
      image = tf.fromPixels(canvas);
      return image;
      } catch (err) {
      console.log(err);
      }
      }
      ...
      ...
      async getImage(filename) {
      try {
      this.image = await loadLocalImage(filename);
      } catch (error) {
      console.log('error loading image', error);
      }
      return this.image;
      }









      share|improve this question















      I'm currently attempting to figure out how to convert a input png into a tensor with tensorflow.js so I can feed it into my model for training. Currently I'm capturing the image, saving it locally, reading it with fs.readFileSync, and then creating a buffer. Where i'm a bit lost is normalizing the buffer values from 0-244 to 0-1, then creating a tensor from this buffer to feed into the model.fit function as the X arg. I also don't really know how to set up my labels file and properly convert that into a buffer for the Y arg. (https://js.tensorflow.org/api/0.11.2/#tf.Model.fit) Any insight into the proper usage / configuration of images into tensors for using tensorflow.js would be greatly appreciated.



      Repo is here;
      https://github.com/Durban-Designer/Fighter-Ai



      code for loading local image in data.js;



      const tf = require('@tensorflow/tfjs');
      const assert = require('assert');
      const IMAGE_HEADER_BYTES = 32;
      const IMAGE_HEIGHT = 600;
      const IMAGE_WIDTH = 800;
      const IMAGE_FLAT_SIZE = IMAGE_HEIGHT * IMAGE_WIDTH;

      function loadHeaderValues(buffer, headerLength) {
      const headerValues = ;
      for (let i = 0; i < headerLength / 4; i++) {
      headerValues[i] = buffer.readUInt32BE(i * 4);
      }
      return headerValues;
      }

      ...
      ...
      class Dataset {
      async loadLocalImage(filename) {
      const buffer = fs.readFileSync(filename);

      const headerBytes = IMAGE_HEADER_BYTES;
      const recordBytes = IMAGE_HEIGHT * IMAGE_WIDTH;

      const headerValues = loadHeaderValues(buffer, headerBytes);
      console.log(headerValues, buffer);
      assert.equal(headerValues[5], IMAGE_HEIGHT);
      assert.equal(headerValues[4], IMAGE_WIDTH);

      const images = ;
      let index = headerBytes;
      while (index < buffer.byteLength) {
      const array = new Float32Array(recordBytes);
      for (let i = 0; i < recordBytes; i++) {
      // Normalize the pixel values into the 0-1 interval, from
      // the original 0-255 interval.
      array[i] = buffer.readUInt8(index++) / 255;
      }
      images.push(array);
      }

      assert.equal(images.length, headerValues[1]);
      return images;
      }
      }
      module.exports = new Dataset();


      image capture loop in app.js;



      const ioHook = require("iohook");
      const tf = require('@tensorflow/tfjs');
      var screenCap = require('desktop-screenshot');
      require('@tensorflow/tfjs-node');
      const data = require('./src/data');
      const virtKeys = require('./src/virtKeys');
      const model = require('./src/model');
      var dir = __dirname;
      var paused = true;
      var loopInterval,
      image,
      imageData,
      result

      ioHook.on('keyup', event => {
      if (event.keycode === 88) {
      if (paused) {
      paused = false;
      gameLoop();
      } else {
      paused = true;
      }
      }
      });

      ioHook.start();
      function gameLoop () {
      if (!paused) {
      screenCap(dir + '\image.png', {width: 800, height: 600, quality: 60}, function (error, complete) {
      if (error) {
      console.log(error);
      } else {
      imageData = await data.getImage(dir + '\image.png')
      console.log(imageData);
      result = model.predict(imageData, {batchSize: 4});
      console.log(result);
      gameLoop();
      }
      })
      }
      }


      I know I use model.predict here, I wanted to get the actual image to tensor part working then figure out labels and model.fit() in train-tensor.js in the repo. I don't have any actual working code for training so I didn't include it in this question, sorry if it caused any confusion.



      Thank you again!



      Edit final working code



      const { Image, createCanvas } = require('canvas');
      const canvas = createCanvas(800, 600);
      const ctx = canvas.getContext('2d');

      async function loadLocalImage (filename) {
      try {
      var img = new Image()
      img.onload = () => ctx.drawImage(img, 0, 0);
      img.onerror = err => { throw err };
      img.src = filename;
      image = tf.fromPixels(canvas);
      return image;
      } catch (err) {
      console.log(err);
      }
      }
      ...
      ...
      async getImage(filename) {
      try {
      this.image = await loadLocalImage(filename);
      } catch (error) {
      console.log('error loading image', error);
      }
      return this.image;
      }






      javascript node.js png buffer tensorflow.js






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 9 at 20:57

























      asked Nov 9 at 18:49









      Royce Birnbaum

      106




      106
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          tensorflowjs already has a method for this: tf.fromPixels().



          You just need to load the image into on of the accepted types(ImageData|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement).



          Your image loading Promise returns nothing because your async function doesn't return anything, just your callback, to fix this you need to create and resolve a promise yourself:



          const imageGet = require('get-image-data');
          async loadLocalImage(filename) {
          return new Promise((res,rej)=>{
          imageGet(filename, (err, info) => {
          if(err){
          rej(err);
          return;
          }
          const image = tf.fromPixels(info.data)
          console.log(image, '127');
          res(image);
          });
          }





          share|improve this answer























          • I tried that but i'm still getting an undefined result from the promise, i'll edit the function into above since comments don't have breaks.
            – Royce Birnbaum
            Nov 9 at 19:57












          • Your callback returns something not your async function
            – Sebastian Speitel
            Nov 9 at 20:08










          • Thank you so much!
            – Royce Birnbaum
            Nov 9 at 20:12











          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%2f53231699%2fconverting-png-to-tensor-tensorflow-js%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote



          accepted










          tensorflowjs already has a method for this: tf.fromPixels().



          You just need to load the image into on of the accepted types(ImageData|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement).



          Your image loading Promise returns nothing because your async function doesn't return anything, just your callback, to fix this you need to create and resolve a promise yourself:



          const imageGet = require('get-image-data');
          async loadLocalImage(filename) {
          return new Promise((res,rej)=>{
          imageGet(filename, (err, info) => {
          if(err){
          rej(err);
          return;
          }
          const image = tf.fromPixels(info.data)
          console.log(image, '127');
          res(image);
          });
          }





          share|improve this answer























          • I tried that but i'm still getting an undefined result from the promise, i'll edit the function into above since comments don't have breaks.
            – Royce Birnbaum
            Nov 9 at 19:57












          • Your callback returns something not your async function
            – Sebastian Speitel
            Nov 9 at 20:08










          • Thank you so much!
            – Royce Birnbaum
            Nov 9 at 20:12















          up vote
          0
          down vote



          accepted










          tensorflowjs already has a method for this: tf.fromPixels().



          You just need to load the image into on of the accepted types(ImageData|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement).



          Your image loading Promise returns nothing because your async function doesn't return anything, just your callback, to fix this you need to create and resolve a promise yourself:



          const imageGet = require('get-image-data');
          async loadLocalImage(filename) {
          return new Promise((res,rej)=>{
          imageGet(filename, (err, info) => {
          if(err){
          rej(err);
          return;
          }
          const image = tf.fromPixels(info.data)
          console.log(image, '127');
          res(image);
          });
          }





          share|improve this answer























          • I tried that but i'm still getting an undefined result from the promise, i'll edit the function into above since comments don't have breaks.
            – Royce Birnbaum
            Nov 9 at 19:57












          • Your callback returns something not your async function
            – Sebastian Speitel
            Nov 9 at 20:08










          • Thank you so much!
            – Royce Birnbaum
            Nov 9 at 20:12













          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          tensorflowjs already has a method for this: tf.fromPixels().



          You just need to load the image into on of the accepted types(ImageData|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement).



          Your image loading Promise returns nothing because your async function doesn't return anything, just your callback, to fix this you need to create and resolve a promise yourself:



          const imageGet = require('get-image-data');
          async loadLocalImage(filename) {
          return new Promise((res,rej)=>{
          imageGet(filename, (err, info) => {
          if(err){
          rej(err);
          return;
          }
          const image = tf.fromPixels(info.data)
          console.log(image, '127');
          res(image);
          });
          }





          share|improve this answer














          tensorflowjs already has a method for this: tf.fromPixels().



          You just need to load the image into on of the accepted types(ImageData|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement).



          Your image loading Promise returns nothing because your async function doesn't return anything, just your callback, to fix this you need to create and resolve a promise yourself:



          const imageGet = require('get-image-data');
          async loadLocalImage(filename) {
          return new Promise((res,rej)=>{
          imageGet(filename, (err, info) => {
          if(err){
          rej(err);
          return;
          }
          const image = tf.fromPixels(info.data)
          console.log(image, '127');
          res(image);
          });
          }






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 9 at 20:13

























          answered Nov 9 at 19:46









          Sebastian Speitel

          4,0522425




          4,0522425












          • I tried that but i'm still getting an undefined result from the promise, i'll edit the function into above since comments don't have breaks.
            – Royce Birnbaum
            Nov 9 at 19:57












          • Your callback returns something not your async function
            – Sebastian Speitel
            Nov 9 at 20:08










          • Thank you so much!
            – Royce Birnbaum
            Nov 9 at 20:12


















          • I tried that but i'm still getting an undefined result from the promise, i'll edit the function into above since comments don't have breaks.
            – Royce Birnbaum
            Nov 9 at 19:57












          • Your callback returns something not your async function
            – Sebastian Speitel
            Nov 9 at 20:08










          • Thank you so much!
            – Royce Birnbaum
            Nov 9 at 20:12
















          I tried that but i'm still getting an undefined result from the promise, i'll edit the function into above since comments don't have breaks.
          – Royce Birnbaum
          Nov 9 at 19:57






          I tried that but i'm still getting an undefined result from the promise, i'll edit the function into above since comments don't have breaks.
          – Royce Birnbaum
          Nov 9 at 19:57














          Your callback returns something not your async function
          – Sebastian Speitel
          Nov 9 at 20:08




          Your callback returns something not your async function
          – Sebastian Speitel
          Nov 9 at 20:08












          Thank you so much!
          – Royce Birnbaum
          Nov 9 at 20:12




          Thank you so much!
          – Royce Birnbaum
          Nov 9 at 20:12


















          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%2f53231699%2fconverting-png-to-tensor-tensorflow-js%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

          Schultheiß

          Verwaltungsgliederung Dänemarks

          Liste der Kulturdenkmale in Wilsdruff