Skip to content

Commit 2ced1f1

Browse files
author
Sabbir Ahmed
authored
Merge pull request #632 from shahed-swe/patch-3
Create rembg-background-remove.js
2 parents d5153b4 + 82a98aa commit 2ced1f1

1 file changed

Lines changed: 51 additions & 0 deletions

File tree

data/rembg-background-remove.js

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"id": "rembg",
3+
"title": "রেম্বিজি",
4+
"slug": "rembg",
5+
"description": "পাইথন এর রেম্বিজি দিয়ে ছবির ব্যকগ্রাউন্ড রিমোভার,
6+
"colorPref": "#FF9A00",
7+
"contents": [
8+
{
9+
"title": "প্রাথমিক কমান্ড সমূহ",
10+
"items": [
11+
{
12+
"definition": "পাইথন এ ভার্চুয়াল ইনভাইরনমেন্ট তৈরির পদ্ধতি",
13+
"code": "virtualenv env"
14+
},
15+
{
16+
"definition": "ভার্চুয়াল ইনভাইরনমেন্ট সক্রিয়(উইন্ডোজ)",
17+
"code": ".\env\Scripts\activate"
18+
},
19+
{
20+
"definition": "ভার্চুয়াল ইনভাইরনমেন্ট সক্রিয়(লিনাক্স)",
21+
"code": "source env/bin/activate"
22+
},
23+
{
24+
"definition": "পাইটর্চ ইন্সটল করার পদ্ধতি",
25+
"code": "pip install torch"
26+
},
27+
{
28+
"definition": "রেম্বিজি ইন্সটল করার পদ্ধতি",
29+
"code": "pip install rembg"
30+
},
31+
]
32+
},
33+
{
34+
"title": "প্রাথমিক ব্যকগ্রাউন্ড রিমোভ করার কমান্ড",
35+
"items": [
36+
{
37+
"definition": "রিমোট সার্ভারে থাকা ছবির ব্যকগ্রাউন্ড রিমোভ",
38+
"code": "curl -s http://<ছবির ইউয়ারেল> | rembg > output.png"
39+
},
40+
{
41+
"definition": "লোকালে থাকা ছবির ব্যকগ্রাউন্ড রিমোভ"",
42+
"code": "rembg -o <আউটপুট ফাইল এর পাথ> <ইনপুট ফাইল এর পাথ>"
43+
},
44+
{
45+
"definition": "লোকালে থাকা ফোল্ডারের সব ছবির ব্যকগ্রাউন্ড একসাথে রিমোভ করতে",
46+
"code": "rembg -p <ইনপুট ফোল্ডারের নামে> <আউটপুট ফোল্ডারের নাম>"
47+
},
48+
]
49+
}
50+
]
51+
}

0 commit comments

Comments
 (0)