cv::cvtColor(original_frame, gray_frame, cv::COLOR_BGR2GRAY);
cv::cvtColor(gray_frame, gray_frame3,cv::COLOR_GRAY2BGR);
LUT(gray_frame3, mylut, pcolor_frame);
的{{1}}是否等效,stringr
设置为grep
? (我想避免下面value
命令返回的TRUE
。)
NA
答案 0 :(得分:5)
使用str_subset
:
str_subset(x,"a")
[1] "a" "a"
帮助文件说明了等价:
str_subset()是x [str_detect(x,pattern)]的包装器,是 相当于grep(pattern,x,value = TRUE)。