Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
xy-imageloader
Advanced tools
imgLoader("./lena.png").then(image => {
...
})
getImageData("./lena.png").then(imageData => {
...
})
import imgLoader, { getImageData, rgbToGary } from 'xy-imageloader';
import rgbToGary from 'xy-imageloader/lib/color';
import { getTemplatePos } from 'xy-imageloader/lib/util';
Promise.all([imgLoader("./lena.png"), imgLoader("./search.png")]).then(
(values: any) => {
Promise.all([getImageData(values[0]), getImageData(values[1])]).then(
(dataValues: any) => {
const model = rgbToGary(dataValues[0]);
const search = rgbToGary(dataValues[1]);
const posi = getTemplatePos(
model,
search,
dataValues[0].width,
dataValues[0].height,
dataValues[1].width,
dataValues[1].height,
"CV_TM_CCOEFF_NORMED"
);
const canvas = document.createElement("canvas");
canvas.width = dataValues[0].width;
canvas.height = dataValues[0].height;
const ctx = canvas.getContext("2d");
ctx?.drawImage(values[0], 0, 0);
ctx.strokeStyle = "red";
ctx?.strokeRect(
posi.x,
posi.y,
dataValues[1].width,
dataValues[1].height
);
document.body.appendChild(canvas);
}
);
}
);
async componentDidMount() {
const canvas1 = await loadCanvas('./11.png');
const ctx1 = canvas1.getContext('2d');
const imageData1 = ctx1!.getImageData(0, 0, canvas1.width, canvas1.height);
const rgb1 = getRGBColor(imageData1);
const gray1 = rgbToGary(rgb1);
const threshold1 = OtsuAlgorithm(gray1);
const [newImageData1] = convertBinarization(imageData1, threshold1, true);
document.body.appendChild(canvas1);
const canvas2 = await loadCanvas('./22.png');
const ctx2 = canvas2.getContext('2d');
const imageData2 = ctx2!.getImageData(0, 0, canvas2.width, canvas2.height);
const rgb2 = getRGBColor(imageData2);
const gray2 = rgbToGary(rgb2);
const threshold2 = OtsuAlgorithm(gray2);
const [newImageData2, cropedOffsetX, cropedOffsetY] = convertBinarization(
imageData2,
threshold2,
true,
);
document.body.appendChild(canvas2);
const gutter = 100; // 定义合并不同点间隔大小
const difference = compareImage(newImageData1, newImageData2, gutter);
difference.forEach(d => {
canvas2.getContext('2d')!.strokeStyle = 'red';
canvas2
.getContext('2d')!
.strokeRect(d.x + cropedOffsetX, d.y + cropedOffsetY, d.w, d.h);
});
}
// 可以扩展边缘为 空缺(黑) | 边缘复制 | 边缘镜像
getImageData("./lena.png").then(data => {
const newImageData = borderExpand(data, "BORDER_REPLICATE", 33);
const canvas = document.createElement("canvas");
canvas.width = newImageData.width;
canvas.height = newImageData.height;
const ctx = canvas.getContext("2d");
ctx.putImageData(newImageData, 0, 0);
document.body.insertBefore(canvas, document.body.children[0]);
});
import imageLoader, { getImageData } from 'xy-imageloader';
import { convertSobel } from 'xy-imageloader/lib/filter';
imageLoader('./122.png').then(async res => {
const imageData = await getImageData(res);
const data = convertSobel(imageData);
const canvas = document.createElement('canvas');
canvas.width = data.width;
canvas.height = data.height;
const ctx = canvas.getContext('2d');
ctx?.putImageData(data, 0, 0);
document.body.appendChild(canvas);
});
FAQs
图片加载器 模板图像匹配 图像对比不同 CV
We found that xy-imageloader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.