CRAFT-Reimplementation icon indicating copy to clipboard operation
CRAFT-Reimplementation copied to clipboard

CRAFT-Pyotorch:Character Region Awareness for Text Detection Reimplementation for Pytorch

Results 66 CRAFT-Reimplementation issues
Sort by recently updated
recently updated
newest added

If the thread goes into [this](https://github.com/backtime92/CRAFT-Reimplementation/blob/master/data_loader.py#L93) branch, incorrect images like below occur: ![ballet_106_102_after_processing](https://user-images.githubusercontent.com/49523965/68745000-23b21f80-0639-11ea-8336-d13d7b7d71be.jpg) If it goes to the `else `branch, the results are fine: ![ballet_106_102_after_processing](https://user-images.githubusercontent.com/49523965/68745008-27de3d00-0639-11ea-8abf-897db563c27d.jpg) I think this is because...

I want to join the WeChat group, but the QR code has expired. Can I resend it or pull me into the group?

1. In `data_loader.py` , `pull_item` function: ```python region_scores = self.resizeGt(region_scores) affinity_scores = self.resizeGt(affinity_scores) confidence_mask = self.resizeGt(confidence_mask) ``` and the function definition of `resizeGt` is: ```python def resizeGt(self, gtmask): return cv2.resize(gtmask,...

While reading your loss function, I came across a few questions: 1. I think `def single_image_loss` defined in `mseloss.py` seems to be a misnomer. The function iterates through outputs for...

fixes [issue](https://github.com/backtime92/CRAFT-Reimplementation/issues/28)

You freeze `vgg16_bn` weights in `trainic15data.py` but not in `trainSyndata.py`. 1. Why do you freeze in `trainic15data.py` and not in `trainSyndata.py`? 2. What is the benefit of freezing? I assumed...

1. training scripts (`trainSyndata.py`) imports `test.py`. `test.py` has some code not nested in `if __name__ == "__main__":`. For example, this below code that parses argument: ```python parser = argparse.ArgumentParser(description='CRAFT Text...

i am confused about loss function in the paper, when estimated character bounding boxes is low mean the accuracy of model is bad, confidence score is low and the loss...