Skip to main content

Basic object detection in python using OpenCv and Numpy - by Dustbiin

Best 6 free cloud data storage on Internet upto 100 GB - By Dustbiin

Cloud storage for video, image, and documents etc...

In nowadays everyone wants to store their data at any remote location. From which they can access their data remotely from anywhere and any device. 

So, we find out top 6 cloud storage which provides limited space free for everyone-


1) DropBox


Dropbox is the world’s first smart workspace. We bring all your team’s content together while letting you use the tools you love. And we help cut through the clutter, surfacing what matters most.

Free space - Upto 5GB

Link -  https://www.dropbox.com/?_hp=c



2) Box


Box started in 2005 to make it easy to access information from anywhere and collaborate with anyone. While that vision still lies at the core of our business, it has transformed into our mission to power how the world works together. Today, we're proud to call 97,000 companies and 68% of the Fortune 500 our customers — but we're just getting started. As work continues to evolve, we stay focused on delivering innovation to organizations across the globe and blowing our customers' minds every day. Dropbox is the world’s first smart workspace. We bring all your team’s content together while letting you use the tools you love. And we help cut through the clutter, surfacing what matters most.


Free space - Upto 10GB

Link -  https://www.box.com/en-in/home


3) pCloud


Based in Switzerland, we are a young forward-thinking team doing our best to make a significant impact on the rapidly growing IT market.

At pCloud, we're providing the world with a comprehensive easy-to-use cloud storage solution for individuals and businesses alike. Our approach incorporates the technical point-of-view with the end-user in mind. Other cloud services are either too technical and are not user-friendly, or they are not comprehensive enough for users to get everything they want out of cloud storage.

This is why we founded pCloud in 2013 to combine our strong IT skills with the vibrant creativity of our growing team to create a cloud storage solution that works seamlessly for both individuals and businesses. Box started in 2005 to make it easy to access information from anywhere and collaborate with anyone. While that vision still lies at the core of our business, it has transformed into our mission to power how the world works together. Today, we're proud to call 97,000 companies and 68% of the Fortune 500 our customers — but we're just getting started. As work continues to evolve, we stay focused on delivering innovation to organizations across the globe and blowing our customers' minds every day. Dropbox is the world’s first smart workspace. We bring all your team’s content together while letting you use the tools you love. And we help cut through the clutter, surfacing what matters most.


Free space - Upto 10GB

Link - https://www.pcloud.com/


4) Google Drive


Google Drive is a file storage and synchronization service developed by Google. Launched on April 24, 2012, Google Drive allows users to store files on their servers, synchronize files across devices, and share files.


Free space - Upto 15GB

Link - https://www.google.com/drive/


5) Mega


MEGA's core is end-to-end encrypted cloud storage and communication. In the future, MEGA will continue to develop innovative products and features that complement its existing platform for both individuals and businesses to help them improve their security on the Internet without compromising on usability.Google Drive is a file storage and synchronization service developed by Google. Launched on April 24, 2012, Google Drive allows users to store files on their servers, synchronize files across devices, and share files.


Free space - Upto 50GB

Link -https://mega.nz/


6) Degoo


Top Secret Cloud Storage-

Degoo offers a world-class cloud storage service for consumers.

Swedish Cloud-

Degoo was founded in Sweden in 2012 and is built with Swedish engineering and entrepreneurship with a global team.


Free space - Upto 100GB

Link -https://degoo.com/


Comments

Popular posts from this blog

Custom cell color in Excel Apache POI - By Dustbiin

Create custom color for cell background by using java color class Create custom color- XSSFWorkbook workBook = new XSSFWorkbook (); IndexedColorMap colorMap = workbook.getStylesSource().getIndexedColors(); Font tableHeadOneFontStyle = workbook.createFont();  tableHeadOneFontStyle.setBold( true ); tableHeadOneFontStyle.setColor( IndexedColors.BLACK.getIndex() ); XSSFCellStyle tableHeaderOneColOneStyle = workbook.createCellStyle(); tableHeaderOneColOneStyle.setFont( tableHeadOneFontStyle ); tableHeaderOneColOneStyle.setFillForegroundColor( new XSSFColor( new java.awt.Color( 255, 231, 153 ), colorMap ) ); tableHeaderOneColOneStyle.setFillPattern( FillPatternType.SOLID_FOREGROUND ); tableHeaderOneColOneStyle = setLeftRightBorderColor( tableHeaderOneColOneStyle ); tableHeaderOneColOneStyle = alignCenter( tableHeaderOneColOneStyle );

Create design by connecting dot's using opencv and numpy - by Dustbiin

Create basic design by using connecting dot's using your mouse- I have been create this by using mouse event check out the code below- use Python, OpenCv , NumPy import numpy as np import cv2 def click_event(event , x , y , flags , param): if event == cv2.EVENT_LBUTTONDOWN: print(x , " , " , y) font = cv2.FONT_HERSHEY_SIMPLEX strXY = str(x) + ' , ' + str(y) # cv2.putText(img,strXY, (x, y), font, .1, (255, 255, 0), 2) cv2.circle(img , (x , y) , 3 , ( 0 , 0 , 255 ) , - 1 ) points.append((x , y)) if len(points) >= 2 : cv2.circle(img , points[- 1 ] , 3 , ( 0 , 0 , 255 ) , - 1 ) # cv2.putText(img,strXY, points[-1], font, .1, (255, 255, 0), 2) cv2.line(img , points[- 2 ] , points[- 1 ] , ( 0 , 0 , 255 ) , 1 ) cv2.imshow( "Image" , img) points = [] img = np.zeros(( 512 , 512 , 3 )) cv2.imshow( "Image" , img) cv2.setMouseCallback( 'Image' ...

Basic object detection in python using OpenCv and Numpy - by Dustbiin

 Object detection in python by using OpenCv and Numpy -  Object Detection is a new vision technique using camera. It give us ability to identify objects in a cam video and also in an image.  with this kind of technique we identify the object on the basis of color, shape and size etc. And it is also use for count the object in an image or videos. Object detection is also user for tracking an object current location.  Code for basic object detection on the basis of color- import numpy as np import cv2 def nothing (x): print (x) #user for live cam object detection cap = cv2.VideoCapture( 0 ) cv2.namedWindow( 'Tracking' ) cv2.createTrackbar( 'LH' , 'Tracking' , 0 , 255 , nothing) cv2.createTrackbar( 'LS' , 'Tracking' , 0 , 255 , nothing) cv2.createTrackbar( 'LV' , 'Tracking' , 0 , 255 , nothing) cv2.createTrackbar( 'UH' , 'Tracking' , 255 , 255 , nothing) cv2.createTrackbar( 'US' , 'Tracking' , 255...