Research Article

[Retracted] Design of Image Processing Technology Support System in Human-Computer Collaborative Visual Design Assisted by Artificial Intelligence Technology

Algorithm 1

Data structure.
typedef struct tagRunLength
{
pLable; //Pointer to the storage address of the label
 int iRow; //Current scan line number
 int iStart; //Run start column number
 int iEnd; //End of the run number
pForward; //Pointer to the previous run
pNext; //Pointer to the next run
}RunLength;