新手上路
- 积分
- 20
- 金钱
- 20
- 注册时间
- 2019-7-31
- 在线时间
- 7 小时
|
最近在用精英版学习图像处理,在进行二值化后发现二值化图像噪声太大,决定使用中值滤波法,但是在将二值化后的数值放在二维矩阵时数组的定义出现了问题。希望大佬们可以一起学习,讨论。下面是我的问题:
首先定义矩阵u8 Image_saving[320][240];
然后定义了循环变量u32 i,j,m=0,n=0;
再两个for循环中对数组进行赋值Image_saving[m][n]=color;
n++;
但是报错
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching main.o(.bss).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching startup_stm32f10x_hd.o(STACK).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching usmart_config.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching usart.o(.bss).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching libspace.o(.bss).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching usmart_config.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching usmart.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching main.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching system_stm32f10x.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching stm32f10x_rcc.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching lcd.o(.bss).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching lcd.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching timer.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching delay.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching usart.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching usart.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching key.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching exti.o(.data).
..\OBJ\OV7670.axf: Error: L6406E: No space in execution regions with .ANY selector matching startup_stm32f10x_hd.o(HEAP).
..\OBJ\OV7670.axf: Error: L6407E: Sections of aggregate size 0x132d4 bytes could not fit into .ANY selector(s).
想请教大佬怎么处理大数组才可以正常使用(精英版)
|
|