矩阵 malloc 图像处理

发布于 2024-09-08 13:22:10 字数 248 浏览 5 评论 0原文

我正在尝试为存储的图像开发图像处理应用程序 在iPhone的照片库中,但说实话我很困惑。 我有兴趣从图像中获取 ARGB 矩阵。然后使 使用这些矩阵的一些算法,然后释放它们。 对于上述方法,您更喜欢什么?开发算法 使用“malloc”然后“free”的二维矩阵,还是同时使用“malloc”和“free”的一维矩阵?当我不使用 malloc 时,我面临内存问题,可能不足以在内存中同时存储 uiimage 和所有这些矩阵。 PS 我正在处理 3MP 图像。

提前致谢

I 'm trying to develop an Image Processing application for the images stored
at the photo library of the iPhone, but to tell the truth I am confused.
I'm interested in getting the A R G B matrixes out of the image. then make
some algorithm with these matrixes and then releasing them.
What would you prefer for the aforementioned method? Developing the algorithm
with 2-dimensional matrixes using "malloc" and then "free" or would you use 1-dimensional matrixes with both "malloc" and "free"? When I 'm not using malloc I face problems with the memory, probably it's not enough to store both the uiimage and all these matrixes at the same time at the memory.
P.S I'm working on 3MP images.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦晓ヶ微光ヅ倾城 2024-09-15 13:22:10

我将使用 malloc 并通过访问器函数访问矩阵,该函数根据二维坐标计算一维索引。

I would use malloc and access the matrix through accessor functions which compute the 1-D index from the 2-D coordinates.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文