{"about":{"site":"https://codewithpapers.app","non_affiliation":"Code with Papers and Syntology are not affiliated with, endorsed by, or sponsored by Papers with Code, Meta, or the pwc-archive mirror.","licence":"CC BY-SA 4.0","licence_url":"https://creativecommons.org/licenses/by-sa/4.0/legalcode","attribution":"https://codewithpapers.app/attribution","modified":"archive material modified by Syntology; see the attribution page"},"url":"/paper/real-time-grasp-detection-using-convolutional","title":"Real-Time Grasp Detection Using Convolutional Neural Networks","arxiv_id":"1412.3128","date":"2014-12-09","proceeding":null,"authors":["Joseph Redmon","Anelia Angelova"],"abstract":"We present an accurate, real-time approach to robotic grasp detection based\non convolutional neural networks. Our network performs single-stage regression\nto graspable bounding boxes without using standard sliding window or region\nproposal techniques. The model outperforms state-of-the-art approaches by 14\npercentage points and runs at 13 frames per second on a GPU. Our network can\nsimultaneously perform classification so that in a single step it recognizes\nthe object and finds a good grasp rectangle. A modification to this model\npredicts multiple grasps per object by using a locally constrained prediction\nmechanism. The locally constrained model performs significantly better,\nespecially on objects that can be grasped in a variety of ways.","url_abs":"http://arxiv.org/abs/1412.3128v2","url_pdf":"http://arxiv.org/pdf/1412.3128v2.pdf","source":{"archive":"pwc-archive (Hugging Face), CC BY-SA 4.0","snapshot":"2025-07-28","licence_url":"https://creativecommons.org/licenses/by-sa/4.0/legalcode","row_kind":"abstracts"},"code_links":[{"paper_slug":"real-time-grasp-detection-using-convolutional","repo_url":"https://github.com/571502680/robot-grasp-detection","is_official":0,"mentioned_in_paper":0,"mentioned_in_github":1,"framework":"tf","reach":{"status":"ok","spdx":"Apache-2.0"}},{"paper_slug":"real-time-grasp-detection-using-convolutional","repo_url":"https://github.com/DucTranVan/grasp-detection-pytorch","is_official":0,"mentioned_in_paper":0,"mentioned_in_github":1,"framework":"pytorch","reach":{"status":"ok","spdx":"MIT"}},{"paper_slug":"real-time-grasp-detection-using-convolutional","repo_url":"https://github.com/hamed-hosseini/ggcnn","is_official":0,"mentioned_in_paper":0,"mentioned_in_github":1,"framework":"pytorch","reach":{"status":"ok","spdx":"BSD-3-Clause"}}],"tasks":[{"task_slug":null,"task_name":"GPU"},{"task_slug":"classification","task_name":"General Classification"},{"task_slug":"object","task_name":"Object"},{"task_slug":"region-proposal","task_name":"Region Proposal"},{"task_slug":"robotic-grasping","task_name":"Robotic Grasping"},{"task_slug":"regression-1","task_name":"regression"}],"methods":[],"datasets_introduced":[],"methods_introduced":[],"results":[{"leaderboard":"/sota/robotic-grasping-on-cornell-grasp-dataset-1","task":"Robotic Grasping","dataset":"Cornell Grasp Dataset","model":"AlexNet, MultiGrasp","rank_in_archive_order":5,"of":7,"metrics":{"5 fold cross validation":"88"},"uses_additional_data":false}],"syntology":{"atlas_url":"https://app.syntology.ai/?focus=1412.3128","mcp":{"get_harvested_code_for_paper":{"arxiv_id":"1412.3128"}},"developers":"https://syntology.ai/developers","read_at":"2026-09-24T18:15:14+00:00","read_at_is":"when the build read Syntology's graph, not when any sample ran","claim":"Per-sample execution status on synthesized fixtures; not a correctness claim about the paper. Samples come from repositories linked to the paper, official or community; repo_kind says which.","repos":[{"provenance":"external:paperswithcode_snapshot_2025-07-28","url":"https://github.com/DucTranVan/grasp-detection-pytorch","reach":{"status":"ok","spdx":"MIT"}},{"provenance":"external:paperswithcode_snapshot_2025-07-28","url":"https://github.com/hamed-hosseini/ggcnn","reach":{"status":"ok","spdx":"BSD-3-Clause"}},{"provenance":"external:paperswithcode_snapshot_2025-07-28","url":"https://github.com/571502680/robot-grasp-detection","reach":{"status":"ok","spdx":"Apache-2.0"}}],"summary":{"ran_fixture":1,"unverified":17},"by_repo_kind":{"listed":{"samples":18,"ran":1,"repositories":3}},"repo_kind_vocabulary":{"official":"The archive marks this repository official for the paper","named_in_paper":"The archive records that the paper mentions this repository; it is not marked official","listed":"In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper","found_in_text":"Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted","community":"Not in the archive's code links for this paper; a community repository Syntology harvested"},"n_pointer_only_for_licence":0,"samples":[{"code_sha256_prefix":"fc52a4f8f0232e03","entry":"max_pool_2x2","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"grasp_inf.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/grasp_inf.py","link_basis":"harvester_set","language":"python","status":"ran_fixture","verification_level":1,"contract_check":"RAISES","metamorphic_tier":"invariant","behaviour_fingerprint":true,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"fc52a4f8f0232e03"}},{"code_sha256_prefix":"ee8e7c782e425ab2","entry":"bboxes_to_grasps","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"grasp_det.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/grasp_det.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"ee8e7c782e425ab2"}},{"code_sha256_prefix":"7fa3dbd955cf872d","entry":"bboxes_to_grasps","repo":"DucTranVan/grasp-detection-pytorch","repo_kind":"listed","path":"src/models/util.py","file_url":"https://github.com/DucTranVan/grasp-detection-pytorch/blob/HEAD/src/models/util.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"7fa3dbd955cf872d"}},{"code_sha256_prefix":"7eaf73809fb84ee2","entry":"calculate_iou_match","repo":"hamed-hosseini/ggcnn","repo_kind":"listed","path":"utils/dataset_processing/evaluation.py","file_url":"https://github.com/hamed-hosseini/ggcnn/blob/HEAD/utils/dataset_processing/evaluation.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"BSD-3-Clause","inline_ok":true,"mcp_get_code":{"code_sha256":"7eaf73809fb84ee2"}},{"code_sha256_prefix":"2894e8be5a098961","entry":"calculate_iou_match_hamed","repo":"hamed-hosseini/ggcnn","repo_kind":"listed","path":"utils/dataset_processing/evaluation.py","file_url":"https://github.com/hamed-hosseini/ggcnn/blob/HEAD/utils/dataset_processing/evaluation.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"BSD-3-Clause","inline_ok":true,"mcp_get_code":{"code_sha256":"2894e8be5a098961"}},{"code_sha256_prefix":"62d8f8b2389b97f7","entry":"conv2d_s1","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"grasp_inf.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/grasp_inf.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"62d8f8b2389b97f7"}},{"code_sha256_prefix":"3bd95fc813da633d","entry":"conv2d_s2","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"grasp_inf.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/grasp_inf.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"3bd95fc813da633d"}},{"code_sha256_prefix":"62c9539b4df460a9","entry":"detect_grasps","repo":"hamed-hosseini/ggcnn","repo_kind":"listed","path":"utils/dataset_processing/grasp.py","file_url":"https://github.com/hamed-hosseini/ggcnn/blob/HEAD/utils/dataset_processing/grasp.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"BSD-3-Clause","inline_ok":true,"mcp_get_code":{"code_sha256":"62c9539b4df460a9"}},{"code_sha256_prefix":"5340de8fabcdb750","entry":"distort_color","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"grasp_img_proc.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/grasp_img_proc.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"5340de8fabcdb750"}},{"code_sha256_prefix":"81b62541aa877dd6","entry":"eval_image","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"grasp_img_proc.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/grasp_img_proc.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"81b62541aa877dd6"}},{"code_sha256_prefix":"d1dd7a0bd6b4800c","entry":"grasp_to_bbox","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"grasp_det.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/grasp_det.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"d1dd7a0bd6b4800c"}},{"code_sha256_prefix":"d4d5a88d7e5cb5d5","entry":"grasps_to_bboxes","repo":"DucTranVan/grasp-detection-pytorch","repo_kind":"listed","path":"src/models/util.py","file_url":"https://github.com/DucTranVan/grasp-detection-pytorch/blob/HEAD/src/models/util.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"d4d5a88d7e5cb5d5"}},{"code_sha256_prefix":"83abe6bab4413440","entry":"inputs","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"archive/grasp_detection.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/archive/grasp_detection.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"83abe6bab4413440"}},{"code_sha256_prefix":"781e15b01fb9e1df","entry":"parse_example_proto","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"grasp_img_proc.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/grasp_img_proc.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"781e15b01fb9e1df"}},{"code_sha256_prefix":"e739a2b8152f12a1","entry":"parse_example_proto","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"image_processing.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/image_processing.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"e739a2b8152f12a1"}},{"code_sha256_prefix":"1a944ae0e5992dc3","entry":"post_process_output","repo":"hamed-hosseini/ggcnn","repo_kind":"listed","path":"models/common.py","file_url":"https://github.com/hamed-hosseini/ggcnn/blob/HEAD/models/common.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"BSD-3-Clause","inline_ok":true,"mcp_get_code":{"code_sha256":"1a944ae0e5992dc3"}},{"code_sha256_prefix":"8265f480063d380c","entry":"read_and_decode","repo":"571502680/robot-grasp-detection","repo_kind":"listed","path":"archive/grasp_detection.py","file_url":"https://github.com/571502680/robot-grasp-detection/blob/HEAD/archive/grasp_detection.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"Apache-2.0","inline_ok":true,"mcp_get_code":{"code_sha256":"8265f480063d380c"}},{"code_sha256_prefix":"894f259f11b9d556","entry":"train","repo":"hamed-hosseini/ggcnn","repo_kind":"listed","path":"train_cnn.py","file_url":"https://github.com/hamed-hosseini/ggcnn/blob/HEAD/train_cnn.py","link_basis":"harvester_set","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"BSD-3-Clause","inline_ok":true,"mcp_get_code":{"code_sha256":"894f259f11b9d556"}}]},"arxiv_metadata":null,"syntology_extracted_results":null}