Actually I have used this code for binary on this picture.

clear clc
close all
rgb_img = imread('file name');
figure(1)
imshow(rgb_img);
r = rgb_img(:, :, 1);
g = rgb_img(:, :, 2);
b = rgb_img(:, :, 3);
imageGreyed = g - r/2 - b/2;
BW = imageGreyed >10; % BW = edge(imageGreyed,'canny'); figure (2),imshow(BW);
[H, T, R] = hough(BW); P = houghpeaks(H, 100);
lines = houghlines(BW, T, R, P, 'FillGap',400, 'MinLength', 400);
figure(2)
imshow(BW);
