如何使用js获取图片像素矩阵
1个回答
展开全部
实图像文件除了像素信息还存储了很多数据,我需要的,只是像素信息,那么首先要知道图像的通道是多少,像灰度图,它的通道是1,常用的RBG图,通道就是3, 也就是说,一个100100的图像,每一行,其实是有1003个项,就是说,每一个像素,存储了R,G,B三个像素的信息。
知道了这些信息,事情就好办多了,下边是我是用node-opencv写的代码:
function BinaryArrayFromImage(imagePath, width, height)
{
var cv = require('../opencv/lib/opencv');
cv.readImage(imagePath, function(err, im) {
if (err) throw err;
var w = im.width();
var h = im.height();
if (w < 1 || h < 1) throw new Error('Image has no size');
var binaryImage = im.threshold(200, 255, "Binary");
console.log("image converted to binary image");
知道了这些信息,事情就好办多了,下边是我是用node-opencv写的代码:
function BinaryArrayFromImage(imagePath, width, height)
{
var cv = require('../opencv/lib/opencv');
cv.readImage(imagePath, function(err, im) {
if (err) throw err;
var w = im.width();
var h = im.height();
if (w < 1 || h < 1) throw new Error('Image has no size');
var binaryImage = im.threshold(200, 255, "Binary");
console.log("image converted to binary image");
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询