/**
陣列排序 array=要排序的陣列 attribute=要排序的字段 asc=是否是公升序
排序完 傳進來的引用array 就是排序後的結果
*/void arraysort(nsmutablearray * array, nsstring *attribute, bool asc)
/**時間 轉換 time 秒數
*/nsstring* formattimebyint(int time, nsstring *format)
/**將16進製制的顏色值變成uicolor @"ffff00"
*/uicolor * colorfromhexrgb(nsstring *incolorstring)
redbyte = (unsigned char) (colorcode >> 16);
greenbyte = (unsigned char) (colorcode >> 8);
bluebyte = (unsigned char) (colorcode); // masks off high bits
result = [uicolor
colorwithred: (float)redbyte / 0xff
green: (float)greenbyte/ 0xff
blue: (float)bluebyte / 0xff
alpha:1.0];
return result;
}
iOS開發 16進製制顏色轉換
專案中經常會用到顏色轉換,有的是通過十六進製制轉成數字轉顏色,想簡單的點直接通過字串轉一下,簡單擴充套件了一下分類uicolor,如下 uicolor colorwithhex nsstring hexcolor ios技術交流 228407086 uicolor colorwithhex nsst...
顏色空間轉換
話不多說,說明anything include include using namespace std using namespace cv int main int argc,char argv printf n 釋放相應的影象記憶體空間 cvreleaseimage src cvreleasei...
顏色空間轉換
img1 cv2.cvtcolor img,cv2.color bgr2gray 將原圖的彩色bgr格式轉換為灰度gray格式影象 img2 cv2.cvtcolor img,cv2.color bgr2hsv 將原圖的彩色bgr格式轉換為彩色hsv格式影象 cv2.namedwindow mcgr...