矩阵 malloc 图像处理
我正在尝试为存储的图像开发图像处理应用程序 在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用 malloc 并通过访问器函数访问矩阵,该函数根据二维坐标计算一维索引。
I would use malloc and access the matrix through accessor functions which compute the 1-D index from the 2-D coordinates.