Detecting Cracks in Concrete Images (TensorFlow CNNs) - Data Every Day

Поделиться
HTML-код
  • Опубликовано: 19 окт 2024
  • НаукаНаука

Комментарии • 35

  • @vivekpadman5248
    @vivekpadman5248 2 года назад

    Yours is such an underrated channel . The way you teach complex data analysis strats with patience and hands on approach is simply amazing. Thank you 😄

  • @ayencoscolfield3312
    @ayencoscolfield3312 3 года назад +2

    just stumbled on your channels and am glad i did , your passion is very infectious and your work is very admirable, well done

    • @gcdatkin
      @gcdatkin  3 года назад

      Thank you so much Ayenco!

  • @shyampatadia649
    @shyampatadia649 3 года назад +2

    Your consistency is admirable 💯💯💯💯👍

  • @wesleyhendriks-r7h
    @wesleyhendriks-r7h Год назад

    Hi, really clear explanation! I was looking into AI learning to analyse a othomasic picture from green houses for cracked and broken windows. As I was looking at your video it would be best to break down the mosaic in smaller tiles, train the model, add labels to the image and stitch the mosaic back together. What would be the best/maximum pixel image size for this method?

  • @wishstorm1980
    @wishstorm1980 Год назад

    Thank you so much this saved me. btw if we run this with real images can we get accurate info?

  • @yugpn6358
    @yugpn6358 3 года назад

    Thank you. Saved my day

  • @rajreeta2485
    @rajreeta2485 3 года назад

    Thank you Sir! It helped me!

  • @DracoWRLDv
    @DracoWRLDv Год назад

    Thx for helping i wanted to ask do u have a tutorial that give us the width and length of the crack Positive Pictures

  • @a.malhammadi4988
    @a.malhammadi4988 Год назад

    Thank you for the great efforts done here, I noticed that when I run the code for the same size of training I got different results each time, if there is any clarification for this point

  • @kelixoderamirez
    @kelixoderamirez 2 года назад

    permission to learn sir.thank you

  • @jaisharma12
    @jaisharma12 2 месяца назад

    For this project do we need high end computer with high processor Gpu ram?

  • @andrestapiadasilva2444
    @andrestapiadasilva2444 3 года назад +1

    First of all I apologize, I am using the google translator, I have a question, if I have a data set that I want to use to test this algorithm, how could I do it? Greetings from Chile friend

  • @laurentprea7746
    @laurentprea7746 3 года назад

    great content!

  • @mukeshsirvi5152
    @mukeshsirvi5152 2 года назад

    hey please make a video on NEU surface defect detection dataset

  • @senaysew8231
    @senaysew8231 3 года назад

    Thank U Sir. I was searching a work on curve lane detection for self driving cars. If you don't mind you may offer us♥️

  • @gargeekate6747
    @gargeekate6747 2 года назад

    What if I want to feed my own dataset as the test dataset? What should be the commands to detecting the cracks in those images?

  • @HailemariamGizachew
    @HailemariamGizachew Год назад

    Hi there!
    How can I fix attribute errors? and can tensorflow work with intel graphics cards? if not, then is there anyway?

  • @chewchengkai2769
    @chewchengkai2769 10 месяцев назад

    Hi, wanna ask after doing the detection how to do the test of training is crack image and show the confidence level on the each test image

  • @gonzalonoxpanco90
    @gonzalonoxpanco90 7 месяцев назад

    I'm trying to run the code with a sample image using the predict. Model () but for some reason I got an error message. Can someone advise here? Thanks in advance!

  • @CristhianSanchez
    @CristhianSanchez 3 года назад +1

    how could you detect the depth of the cracks? I know that through image segmentation you can get good results, but after that how to make measurments ? Any idea :s

    • @gcdatkin
      @gcdatkin  3 года назад

      Well if you want to predict the depth, you would need labeled data for the depth of each training image.
      This could be in the form of a numeric value and we could then use a regression model to approximate it.

  • @michealsakr3830
    @michealsakr3830 Год назад

    how do you know that the positive string is 1 in binary and the negative string is 0?

  • @tlsales8335
    @tlsales8335 2 года назад

    Is there a possible to check on metallic surfaces? Thanks

  • @senakabandaraofficial
    @senakabandaraofficial 3 года назад

    Hi! Great channel. I'm coming from a Mechanical Engineering background and interested in learning DL in SHM. Any tips you can give me? Thanks

    • @gcdatkin
      @gcdatkin  3 года назад

      Any idea how you would liked to apply deep learning to SHM?

  • @rafifzufarihsan459
    @rafifzufarihsan459 3 года назад

    Thank you for such great video... Can you explain how if I want to use that CNN on android studio programming so I can build an android app with that...? :)

  • @SpicyTakoyaki
    @SpicyTakoyaki 3 года назад

    Hello, thank you for this amazing tutorial. I am a student and currently doing a project for concrete crack detection but using mask r-cnn. I have only a little knowledge about cnns. Is there some way that I can use your code for the mask r-cnn? From what I see its a bit different and its confusing. Idk pls help me

    • @digitxor2290
      @digitxor2290 2 года назад

      I am a student and I doing same your project for crack detection I you want to work with each other thats make me happy

    • @pramodk4565
      @pramodk4565 2 года назад

      Any updates on your project?

  • @jyothirao1650
    @jyothirao1650 2 года назад

    In case if i want to give single image and check whether it is positive or negative how am i suppose to do it ?

    • @gcdatkin
      @gcdatkin  2 года назад

      Hi Jyothi,
      After the model is trained, you can call model.predict(image) to get the prediction for a single image.

  • @elune_fx
    @elune_fx 3 года назад

    How can i test few other cracked images for cracked/non-cracked prediction? thanks a lot

    • @gcdatkin
      @gcdatkin  3 года назад +1

      Just flow the images in through the test generator we created in the video!
      new_images = test_generator.flow_from_dataframe(
      dataframe=,
      ...
      ...
      )
      And get the results:
      model.predict(new_images)