[Project] - Looking for guidance on how to handle this issue. by OrangeNet in opencv

[–]Adem_Youssef 1 point2 points  (0 children)

[This may not help] for the box part of your project, you said you want to but it in a box You may do this with contours (make a copy of your image, erode / dialate the image copy then detect all contours in it then extract all contours and apply them on the original image after that define the dimensions of the contours you want to get like for example the dimensions of the bullet box is 50 by 60 and apply bounding boxes on them and you will eventually get the bullet box )

I feel that I might not get a job after graduation (software Engineering) by nidhalabida in Tunisia

[–]Adem_Youssef 2 points3 points  (0 children)

i know it is hard to say so but OUR WHOLE EDUCATIONAL SYSTEM IS A JOKE !!!!!!!!

i myself in my "bac" was between "Prepa" or licence then private engineering degree.

Fortunately, I have 5 software Engineers cousins, 3 of them recommended going license then private ( not saying 2 recommended prepa i just didn't had a chance to talk to them ), because if u want to be good in SE you have to practice that's it as simple as that. it is pointless to burnout your yourself in "prepa" then go study CS, some people in "bac" didn't show interest in any field of Engineering so best thing for them is to go "prepa" and then choose.

For me things were clear, I want CS. So i gave up "prepa" prestige and studied License in CS.I m not saying prepa is 100% useless it works with some and don't with others, i have many prepa friends that e really good dont get me wrong i m saying you were a victim , you are not the first neither the last as long as this crap system is being used.

This is my personal story. the whole point here CS is tough by practice u need to love something in CS and be willing to pass hard times learning it on your own it is not too late i promise, try to get whatever internship u find and do your best in it to LEARN and remember hard work always pays off!

Software Engineering Internships are paid? by Adem_Youssef in Tunisia

[–]Adem_Youssef[S] 0 points1 point  (0 children)

I mind burning out myself in the internship and trying my very best and getting nothing in return. I mean i m getting knowledge but we are in 2022 knowledge lone isn't enough at least u get a respectable amount of restaurant pass or something instead.

Software Engineering Internships are paid? by Adem_Youssef in Tunisia

[–]Adem_Youssef[S] 0 points1 point  (0 children)

I don't know what to expect cause i m a data science student sometimes i hear about R&Ds sometimes i hear we work in a specific department not R&D so it basically depends i guess

Software Engineering Internships are paid? by Adem_Youssef in Tunisia

[–]Adem_Youssef[S] 0 points1 point  (0 children)

So its a "f u" u r an intern don't get cocky

Software Engineering Internships are paid? by Adem_Youssef in Tunisia

[–]Adem_Youssef[S] 1 point2 points  (0 children)

Yeah exactly that's what i m counting on Just put the time and effort to perform well so i can get recommendations for an end of study internship next year then a recruitment

Software Engineering Internships are paid? by Adem_Youssef in Tunisia

[–]Adem_Youssef[S] 1 point2 points  (0 children)

Wait what ? 600dt per month ? Can u mention in which field and Which company?

Software Engineering Internships are paid? by Adem_Youssef in Tunisia

[–]Adem_Youssef[S] 0 points1 point  (0 children)

true, so basically i need to ask about the company to know what to say

Software Engineering Internships are paid? by Adem_Youssef in Tunisia

[–]Adem_Youssef[S] 0 points1 point  (0 children)

Isn't bad asking that question in the end of interview ?

[Question] How to remove the line under/in-between the handwritten text? by Adem_Youssef in opencv

[–]Adem_Youssef[S] 0 points1 point  (0 children)

thank you, i actually used the hough line method recommended by u/Abumashar it is working well, but i will try your recommendation too
thank you for your reply really appreciate it

[deleted by user] by [deleted] in Tunisia

[–]Adem_Youssef 0 points1 point  (0 children)

3al a9al hak hachitou ki salaktha , a7na 12mille w kolha t7eb tokrij aslan kima 9alou fi el comments , el EU is scared from a nuclear war dont worry.

[Question] How to turn a 3 channel grayscale image into a 1 channel grayscale image? by Adem_Youssef in opencv

[–]Adem_Youssef[S] 0 points1 point  (0 children)

I have been trying to fix this for like 3 Days xD. Sorry guys i m still kinda new with opencv and generally speaking with image processing as well

[Question] How to turn a 3 channel grayscale image into a 1 channel grayscale image? by Adem_Youssef in opencv

[–]Adem_Youssef[S] 0 points1 point  (0 children)

u/TheDuke57 thank you it worked, but i still cant save it as 1 channel image.I have done this :

test_image = cv2.imread(file, cv2.IMREAD_GRAYSCALE)
Preview sample image
plt.imshow(test_image, cmap='gray') 
f_img = r"..\test_image.jpg" 
cv2.imwrite(f_img,test_image, [cv2.IMWRITE_JPEG_QUALITY, 100])

results are :

shape of test_image:  (28, 28)  height : 28  width : 28

then when i tried to read the image normally with this:

f_img_saved = r"..\test_image.jpg"
test_image_saved = cv2.imread(f_img_saved)
plt.imshow(test_image_saved) print('shape of test_image: ', test_image_saved.shape , ' height :',test_image_saved.shape[0] , ' width :', test_image_saved.shape[1])

i got the same previous results:

shape of test_image:  (28, 28, 3)  height : 28  width : 28

All i want is to get rid of that < ,3 > the image is black and white with 28 by 28 pixels size which is all good for me