This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/services.dart'; | |
| import 'package:volt/models/volt_api/create_paybis_request_model.dart'; | |
| import 'package:volt/models/volt_api/crypto_wallet_address.dart'; | |
| import 'package:volt/models/volt_api/get_paybis_quote_request_model.dart'; | |
| import 'package:volt/services.dart'; | |
| class PaybisSDK { | |
| static const _paybisMethodChannel = MethodChannel( | |
| "finance.voltage/paybis_method_channel", | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cv2 | |
| import numpy as np | |
| from matplotlib import pyplot as plt | |
| def slice_matrix(matrix, row_start, col_start, size): | |
| col_end = col_start + size | |
| row_end = row_start + size | |
| return [row[col_start:col_end] for row in matrix[row_start:row_end]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cv2 | |
| import numpy as np | |
| # Load the image | |
| image = cv2.imread('/Users/sametsahin/Downloads/scuba_diver.jpeg') | |
| # Define all kernels | |
| kernels = { | |
| 'Sobel Vertical': np.array([[-1, 0, 1], [-2, 0, 2], [-1, 0, 1]]), | |
| 'Sobel Horizontal': np.array([[-1, -2, -1], [0, 0, 0], [1, 2, 1]]), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { ethers } from 'ethers'; | |
| async function transferTokens() { | |
| // Replace with your private key | |
| const privateKey = 'YOUR_PRIVATE_KEY'; | |
| // Replace with the recipient address | |
| const toAddress = 'TO_ADDRESS'; | |
| // Replace with the amount of tokens to transfer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { FuseSDK } from '@fuseio/fusebox-web-sdk'; | |
| import { Injectable } from '@nestjs/common'; | |
| import { ConfigService } from '@nestjs/config'; | |
| import { Signer, Wallet, utils } from 'ethers'; | |
| import { ISendUserOperationResponse } from 'userop'; | |
| @Injectable() | |
| export class FuseboxService { | |
| private fuseSDK: FuseSDK | null = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/services.dart'; | |
| class NoLeadingZerosTextInputFormatter extends TextInputFormatter { | |
| @override | |
| TextEditingValue formatEditUpdate( | |
| TextEditingValue oldValue, | |
| TextEditingValue newValue, | |
| ) { | |
| final newText = newValue.text; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Annotates an image. | |
| * | |
| * @param {AnnotateImageParams} params The params. | |
| */ | |
| export async function annotateImage(params: AnnotateImageParams) { | |
| const imageAnnotatorClient = new vision.ImageAnnotatorClient(); | |
| const labelDetectionFeature = { | |
| type: "LABEL_DETECTION", |