- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想从扫描图像中评估复选框是否被选中。我发现像 node-dv 这样的 Node 模块和 node-fv为了这。但是什么时候安装这个我在 mac 上遇到了以下错误。
../deps/opencv/modules/core/src/arithm1.cpp:444:51: error: constant expression evaluates to 4294967295 which cannot be narrowed to type 'int' [-Wc++11-narrowing]
static int CV_DECL_ALIGNED(16) v64f_absmask[] = { 0xffffffff, 0x7fffffff, 0xffffffff, 0x7fffffff };
^~~~~~~~~~
../deps/opencv/modules/core/src/arithm1.cpp:444:51: note: insert an explicit cast to silence this issue
static int CV_DECL_ALIGNED(16) v64f_absmask[] = { 0xffffffff, 0x7fffffff, 0xffffffff, 0x7fffffff };
^~~~~~~~~~
static_cast<int>( )
../deps/opencv/modules/core/src/arithm1.cpp:444:75: error: constant expression evaluates to 4294967295 which cannot be narrowed to type 'int' [-Wc++11-narrowing]
static int CV_DECL_ALIGNED(16) v64f_absmask[] = { 0xffffffff, 0x7fffffff, 0xffffffff, 0x7fffffff };
^~~~~~~~~~
../deps/opencv/modules/core/src/arithm1.cpp:444:75: note: insert an explicit cast to silence this issue
static int CV_DECL_ALIGNED(16) v64f_absmask[] = { 0xffffffff, 0x7fffffff, 0xffffffff, 0x7fffffff };
^~~~~~~~~~
static_cast<int>( )
2 errors generated.
make: *** [Release/obj.target/libopencv/deps/opencv/modules/core/src/arithm1.o] Error 1
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/Users/entapzian/.nvm/versions/node/v4.3.1/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:270:23)
gyp ERR! stack at emitTwo (events.js:87:13)
gyp ERR! stack at ChildProcess.emit (events.js:172:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)
上面的依赖关系是我的问题的最佳解决方案吗?如果没有,请建议我一个好的解决方案。
最佳答案
很抱歉延迟回复,昨天和今天我真的很忙。这是一个示例,它抓取图像的预定义区域并确定复选框是已填充还是为空。这只是一个起点,可能会得到很大的改进,但如果扫描的图像质量不错,它应该可以工作。
第一步是获取图像的像素。接下来,您可以根据模式抓取图像中包含复选框的区域。最后,通过比较图像中该区域的平均亮度与未选中框的基线亮度来评估复选框是否被选中。
我建议使用 get-pixels获取图像像素的 Node.js 包。
这是一个示例,您可以根据自己的需要进行调整:
var get_pixels = require(‘get-pixels’);
var image_uri = 'path_to_image';
get_pixels(image_uri, process_image);
var pattern_width = 800, // Width of your pattern image
pattern_height = 1100; // Height of your pattern image
// The pattern image doesn't need to be loaded, you just need to use its dimensions to reference the checkbox regions below
// This is only for scaling purposes in the event that the scanned image is of a higher or lower resolution than what you used as a pattern.
var checkboxes = [
{x1: 10, y1: 10, x2: 30, y2: 30}, // Top left and bottom right corners of the region containing the checkbox
{x1: 10, y1: 60, x2: 30, y2: 80}
];
// You'll need to get these by running this on an unchecked form and logging out the adjusted_average of the regions
var baseline_average = ??, // The average brightness of an unchecked region
darkness_tolerance = ??; // The offset below which the box is still considered unchecked
function process_image(err, pixels) {
if (!err) {
var regions = get_regions(pixels);
var checkbox_states = evaluate_regions(regions);
// Whatever you want to do with the determined states
}else{
console.log(err);
return;
}
}
function get_regions(pixels) {
var regions = [], // Array to hold the pixel data from selected regions
img_width = pixels.shape[0], // Get the width of the image being processed
img_height = pixels.shape[1], // Get the height
scale_x = img_width / pattern_width, // Get the width scale difference between pattern and image (for different resolution scans)
scale_y = img_height / pattern_height; // Get the height scale difference
for (var i = 0; i < checkboxes.length; i++) {
var start_x = Math.round(checkboxes[i].x1 * scale_x),
start_y = Math.round(checkboxes[i].y1 * scale_y),
end_x = Math.round(checkboxes[i].x2 * scale_x),
end_y = Math.round(checkboxes[i].y2 * scale_y),
region = [];
for (var y = start_y; y <= end_y; y++) {
for (var x = start_x; y <= end_x; x++) {
region.push(
pixels.get(x, y, 0), // Red channel
pixels.get(x, y, 1), // Green channel
pixels.get(x, y, 2), // Blue channel
pixels.get(x, y, 3) // Alpha channel
);
}
}
regions.push(region);
}
return regions;
}
function evaluate_regions(regions) {
var states = [];
for (var i = 0; i < regions.length; i++) {
var brightest_value = 0,
darkest_value = 255,
total = 0;
for (var j = 0; j < regions[i].length; j+=4) {
var brightness = (regions[i][j] + regions[i][j + 1] + regions[i][j + 2]) / 3; // Pixel brightness
if (brightness > brightest_value) brightest_value = brightness;
if (brightness < darkest_value) darkest_value = brightness;
total += brightness;
}
var adjusted_average = (total / (regions[i].length / 4)) - darkest_value; // Adjust contrast
var checked = baseline_average - adjusted_average > darkness_tolerance ? true : false;
states.push(checked);
}
return states;
}
关于javascript - 从 node.js 中的扫描图像评估复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35835933/
我正在学习构建单页应用程序 (SPA) 所需的所有技术。总而言之,我想将我的应用程序实现为单独的层,其中前端仅使用 API Web 服务(json 通过 socket.io)与后端通信。前端基本上是
当我看到存储在我的数据库中的日期时。 这是 正常 。日期和时间就是这样。 但是当我运行 get 请求来获取数据时。 此格式与存储在数据库 中的格式不同。为什么会发生这种情况? 最佳答案 我认为您可以将
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我正在尝试使用backbone.js 实现一些代码 和 hogan.js (http://twitter.github.com/hogan.js/) Hogan.js was developed ag
我正在使用 Backbone.js、Node.js 和 Express.js 制作一个 Web 应用程序,并且想要添加用户功能(登录、注销、配置文件、显示内容与该用户相关)。我打算使用 Passpor
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 8 年前。 Improve this ques
我尝试在 NodeJS 中加载数据,然后将其传递给 ExpressJS 以在浏览器中呈现 d3 图表。 我知道我可以通过这种方式加载数据 - https://github.com/mbostock/q
在 node.js 中,我似乎遇到了相同的 3 个文件名来描述应用程序的主要入口点: 使用 express-generator 包时,会创建一个 app.js 文件作为生成应用的主要入口点。 通过 n
最近,我有机会观看了 john papa 关于构建单页应用程序的精彩类(class)。我会喜欢的。它涉及服务器端和客户端应用程序的方方面面。 我更喜欢客户端。在他的实现过程中,papa先生在客户端有类
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我是一个图形新手,需要帮助了解各种 javascript 2D 库的功能。 . . 我从 Pixi.js 中得到了什么,而我没有从 Konva 等基于 Canvas 的库中得到什么? 我从 Konva
我正在尝试将一些 LESS 代码(通过 ember-cli-less)构建到 CSS 文件中。 1) https://almsaeedstudio.com/ AdminLTE LESS 文件2) Bo
尝试查看 Express Passport 中所有登录用户的所有 session ,并希望能够查看当前登录的用户。最好和最快的方法是什么? 我在想也许我可以在登录时执行此操作并将用户模型数据库“在线”
我有一个 React 应用程序,但我需要在组件加载完成后运行一些客户端 js。一旦渲染函数完成并加载,运行与 DOM 交互的 js 的最佳方式是什么,例如 $('div').mixItUp() 。对
请告诉我如何使用bodyparser.raw()将文件上传到express.js服务器 客户端 // ... onFilePicked(file) { const url = 'upload/a
我正在尝试从 Grunt 迁移到 Gulp。这个项目在 Grunt 下运行得很好,所以我一定是在 Gulp 中做错了什么。 除脚本外,所有其他任务均有效。我现在厌倦了添加和注释部分。 我不断收到与意外
我正在尝试更改我的网站名称。找不到可以设置标题或应用程序名称的位置。 最佳答案 您可以在 config/ 目录中创建任何文件,例如 config/app.js 包含如下内容: module.expor
经过多年的服务器端 PHP/MySQL 开发,我正在尝试探索用于构建现代 Web 应用程序的新技术。 我正在尝试对所有 JavaScript 内容进行排序,如果我理解得很好,一个有效的解决方案可以是服
我是 Nodejs 的新手。我在 route 目录中有一个 app.js 和一个 index.js。我有一个 app.use(multer....)。我还定义了 app.post('filter-re
我正在使用 angular-seed用于构建我的应用程序的模板。最初,我将所有 JavaScript 代码放入一个文件 main.js。该文件包含我的模块声明、 Controller 、指令、过滤器和
我是一名优秀的程序员,十分优秀!